module Continue_or_stop : sig ... endContinue_or_stop.t is used by the f argument to fold_until in order to indicate whether folding should continue, or stop early.
module type S0 = Base__Container_intf.S0module type S0_phantom = Base__Container_intf.S0_phantommodule type S1 = Base__Container_intf.S1module type S1_phantom_invariant = Base__Container_intf.S1_phantom_invariantmodule type S1_phantom = Base__Container_intf.S1_phantommodule type Generic = Base__Container_intf.Genericmodule type Generic_phantom = Base__Container_intf.Generic_phantommodule type Summable = Base__Container_intf.Summableval count : fold:('t, 'a, int) fold -> 't -> f:('a -> bool) -> intval min_elt : fold:('t, 'a, 'a option) fold -> 't -> compare:('a -> 'a -> int) -> 'a optionval max_elt : fold:('t, 'a, 'a option) fold -> 't -> compare:('a -> 'a -> int) -> 'a optionval length : fold:('t, _, int) fold -> 't -> intval to_list : fold:('t, 'a, 'a list) fold -> 't -> 'a listval sum : fold:('t, 'a, 'sum) fold -> (module Summable with type t = 'sum) -> 't -> f:('a -> 'sum) -> 'sumval fold_result : fold:('t, 'a, 'b) fold -> init:'b -> f:('b -> 'a -> ('b, 'e) Result.t) -> 't -> ('b, 'e) Result.tval fold_until : fold:('t, 'a, 'b) fold -> init:'b -> f:('b -> 'a -> ('b, 'final) Continue_or_stop.t) -> finish:('b -> 'final) -> 't -> 'finalval is_empty : iter:('t, 'a) iter -> 't -> boolGeneric definitions of container operations in terms of iter and length.
val exists : iter:('t, 'a) iter -> 't -> f:('a -> bool) -> boolval for_all : iter:('t, 'a) iter -> 't -> f:('a -> bool) -> boolval find : iter:('t, 'a) iter -> 't -> f:('a -> bool) -> 'a optionval find_map : iter:('t, 'a) iter -> 't -> f:('a -> 'b option) -> 'b optionThe idiom for using Container.Make is to bind the resulting module and to explicitly import each of the functions that one wants: