include Tezos_error_monad.TzLwtreslib.Map.S with type key := t
val is_empty : 'a t -> boolval mem : t -> 'a t -> boolval add : t -> 'a -> 'a t -> 'a tval update : t -> ('a option -> 'a option) -> 'a t -> 'a tval singleton : t -> 'a -> 'a tval remove : t -> 'a t -> 'a tval merge : (t -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c tval union : (t -> '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 : (t -> 'a -> unit) -> 'a t -> unitval iter_e :
(t -> 'a -> (unit, 'trace) Stdlib.result) ->
'a t ->
(unit, 'trace) Stdlib.resultval iter_s : (t -> 'a -> unit Lwt.t) -> 'a t -> unit Lwt.tval iter_p : (t -> 'a -> unit Lwt.t) -> 'a t -> unit Lwt.tval iter_es :
(t -> 'a -> (unit, 'trace) Stdlib.result Lwt.t) ->
'a t ->
(unit, 'trace) Stdlib.result Lwt.tval fold : (t -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'bval fold_e :
(t -> 'a -> 'b -> ('b, 'trace) Stdlib.result) ->
'a t ->
'b ->
('b, 'trace) Stdlib.resultval fold_s : (t -> 'a -> 'b -> 'b Lwt.t) -> 'a t -> 'b -> 'b Lwt.tval fold_es :
(t -> 'a -> 'b -> ('b, 'trace) Stdlib.result Lwt.t) ->
'a t ->
'b ->
('b, 'trace) Stdlib.result Lwt.tval for_all : (t -> 'a -> bool) -> 'a t -> boolval exists : (t -> 'a -> bool) -> 'a t -> boolval filter : (t -> 'a -> bool) -> 'a t -> 'a tval filter_map : (t -> 'a -> 'b option) -> 'a t -> 'b tval partition : (t -> 'a -> bool) -> 'a t -> 'a t * 'a tval cardinal : 'a t -> intval bindings : 'a t -> (t * 'a) listval min_binding : 'a t -> (t * 'a) optionval min_binding_opt : 'a t -> (t * 'a) optionval max_binding : 'a t -> (t * 'a) optionval max_binding_opt : 'a t -> (t * 'a) optionval choose : 'a t -> (t * 'a) optionval choose_opt : 'a t -> (t * 'a) optionval split : t -> 'a t -> 'a t * 'a option * 'a tval find : t -> 'a t -> 'a optionval find_opt : t -> 'a t -> 'a optionval find_first : (t -> bool) -> 'a t -> (t * 'a) optionval find_first_opt : (t -> bool) -> 'a t -> (t * 'a) optionval find_last : (t -> bool) -> 'a t -> (t * 'a) optionval find_last_opt : (t -> bool) -> 'a t -> (t * 'a) optionval map : ('a -> 'b) -> 'a t -> 'b tval mapi : (t -> 'a -> 'b) -> 'a t -> 'b tval to_seq : 'a t -> (t * 'a) Stdlib.Seq.tval to_rev_seq : 'a t -> (t * 'a) Stdlib.Seq.tval to_seq_from : t -> 'a t -> (t * 'a) Stdlib.Seq.tval add_seq : (t * 'a) Stdlib.Seq.t -> 'a t -> 'a tval of_seq : (t * 'a) Stdlib.Seq.t -> 'a t