Module type Indexed_container.S0
val mem : t -> elt -> boolval iter : t -> f:(elt -> unit) -> unitval fold : t -> init:'acc -> f:('acc -> elt -> 'acc) -> 'accval fold_result :
t ->
init:'acc ->
f:('acc -> elt -> ('acc, 'e) result) ->
('acc, 'e) resultval fold_until :
t ->
init:'acc ->
f:('acc -> elt -> ('acc, 'final) Base__Container_intf.Continue_or_stop.t) ->
finish:('acc -> 'final) ->
'finalval exists : t -> f:(elt -> bool) -> boolval for_all : t -> f:(elt -> bool) -> boolval count : t -> f:(elt -> bool) -> intval sum :
(module Base__Container_intf.Summable with type t = 'sum) ->
t ->
f:(elt -> 'sum) ->
'sumval find : t -> f:(elt -> bool) -> elt optionval find_map : t -> f:(elt -> 'a option) -> 'a optionval to_list : t -> elt listval to_array : t -> elt arrayval min_elt : t -> compare:(elt -> elt -> int) -> elt optionval max_elt : t -> compare:(elt -> elt -> int) -> elt optionval foldi : t -> init:'a -> f:(int -> 'a -> elt -> 'a) -> 'aval iteri : t -> f:(int -> elt -> unit) -> unitval existsi : t -> f:(int -> elt -> bool) -> boolval for_alli : t -> f:(int -> elt -> bool) -> boolval counti : t -> f:(int -> elt -> bool) -> intval findi : t -> f:(int -> elt -> bool) -> (int * elt) optionval find_mapi : t -> f:(int -> elt -> 'a option) -> 'a option