Mavryk_raw_protocol_alpha.Carbonated_map_costs
type cost = Saturation_repr.may_saturate Saturation_repr.t
The type of the cost.
The Carbonated_map_costs
module contains gas cost functions for Carbonated_map
.
find_cost ~compare_key_cost ~size
returns the gas cost for looking up an element from a map of size size
. The user of this function is responsible for providing a correct value of compare_key_cost
, representing the cost of comparing elements with a given key.
update_cost ~compare_key_cost ~size
returns the gas cost for updating an element in a map of size size
. The user of this function is responsible for providing a correct value of compare_key_cost
, representing the cost of comparing elements with a given key.
val fold_cost : size:int -> cost
fold_cost ~size
returns the cost of folding over a list of size size
.