Module Account_helpers.CycleMapSource
type key = Tezos_alpha_test_helpers.Tez_staking_helpers.Cycle.ttype !'a t =
'a
Tezos_lwt_result_stdlib__Lwtreslib.Traced(Tezos_error_monad.TzTrace).Map.Make(Tezos_alpha_test_helpers.Tez_staking_helpers.Cycle).tval is_empty : 'a t -> boolval mem : key -> 'a t -> boolval add : key -> 'a -> 'a t -> 'a tval update : key -> ('a option -> 'a option) -> 'a t -> 'a tval singleton : key -> 'a -> 'a tval remove : key -> 'a t -> 'a tval merge :
(key -> 'a option -> 'b option -> 'c option) ->
'a t ->
'b t ->
'c tval union : (key -> 'a -> 'a -> 'a option) -> 'a t -> 'a t -> 'a tval compare : ('a -> 'a -> int) -> 'a t -> 'a t -> intval equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> boolval iter : (key -> 'a -> unit) -> 'a t -> unitval iter_e :
(key -> 'a -> (unit, 'trace) result) ->
'a t ->
(unit, 'trace) resultval iter_s : (key -> 'a -> unit Lwt.t) -> 'a t -> unit Lwt.tval iter_p : (key -> 'a -> unit Lwt.t) -> 'a t -> unit Lwt.tval iter_es :
(key -> 'a -> (unit, 'trace) result Lwt.t) ->
'a t ->
(unit, 'trace) result Lwt.tval fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'bval fold_e :
(key -> 'a -> 'b -> ('b, 'trace) result) ->
'a t ->
'b ->
('b, 'trace) resultval fold_s : (key -> 'a -> 'b -> 'b Lwt.t) -> 'a t -> 'b -> 'b Lwt.tval fold_es :
(key -> 'a -> 'b -> ('b, 'trace) result Lwt.t) ->
'a t ->
'b ->
('b, 'trace) result Lwt.tval for_all : (key -> 'a -> bool) -> 'a t -> boolval exists : (key -> 'a -> bool) -> 'a t -> boolval filter : (key -> 'a -> bool) -> 'a t -> 'a tval filter_map : (key -> 'a -> 'b option) -> 'a t -> 'b tval partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a tval cardinal : 'a t -> intval bindings : 'a t -> (key * 'a) listval min_binding : 'a t -> (key * 'a) optionval min_binding_opt : 'a t -> (key * 'a) optionval max_binding : 'a t -> (key * 'a) optionval max_binding_opt : 'a t -> (key * 'a) optionval choose : 'a t -> (key * 'a) optionval choose_opt : 'a t -> (key * 'a) optionval split : key -> 'a t -> 'a t * 'a option * 'a tval find : key -> 'a t -> 'a optionval find_opt : key -> 'a t -> 'a optionval find_first : (key -> bool) -> 'a t -> (key * 'a) optionval find_first_opt : (key -> bool) -> 'a t -> (key * 'a) optionval find_last : (key -> bool) -> 'a t -> (key * 'a) optionval find_last_opt : (key -> bool) -> 'a t -> (key * 'a) optionval map : ('a -> 'b) -> 'a t -> 'b tval mapi : (key -> 'a -> 'b) -> 'a t -> 'b tval iter_ep :
(key -> 'a -> (unit, 'error Tezos_error_monad.TzTrace.trace) result Lwt.t) ->
'a t ->
(unit, 'error Tezos_error_monad.TzTrace.trace) result Lwt.t