package tezos-protocol-alpha

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module type S = sig ... end

An in-memory data-structure for a key-value map where all operations account for gas costs.

module type COMPARABLE = sig ... end

A module type for comparable values that also includes a cost function for metering gas depending on the cost of comparing values.

module Make (O : COMPARABLE) : S with type key := O.t

A functor for building gas metered maps.