Module type Base.Set_intf.Creators_and_accessors2_with_comparator

include Accessors2_with_comparator
include Container.S1_phantom_invariant
type ('a, 'phantom) t
val mem : ('a_t ‑> 'a ‑> equal:('a ‑> 'a ‑> bool) ‑> bool

Checks whether the provided element is there, using equal.

val length : (__t ‑> int
val is_empty : (__t ‑> bool
val iter : ('a_t ‑> f:('a ‑> unit) ‑> unit
val fold : ('a_t ‑> init:'accum ‑> f:('accum ‑> 'a ‑> 'accum) ‑> 'accum

fold t ~init ~f returns f (... f (f (f init e1) e2) e3 ...) en, where e1..en are the elements of t

val fold_result : ('a_t ‑> init:'accum ‑> f:('accum ‑> 'a ‑> ('accum'eResult.t) ‑> ('accum'eResult.t

fold_result t ~init ~f is a short-circuiting version of fold that runs in the Result monad. If f returns an Error _, that value is returned without any additional invocations of f.

val fold_until : ('a_t ‑> init:'accum ‑> f:('accum ‑> 'a ‑> ('accum'stopContainer_intf.Continue_or_stop.t) ‑> ('accum'stopContainer_intf.Finished_or_stopped_early.t

fold_until t ~init ~f is a short-circuiting version of fold. If f returns Stop _ the computation ceases and results in that value. If f returns Continue _, the fold will proceed.

val exists : ('a_t ‑> f:('a ‑> bool) ‑> bool

Returns true if and only if there exists an element for which the provided function evaluates to true. This is a short-circuiting operation.

val for_all : ('a_t ‑> f:('a ‑> bool) ‑> bool

Returns true if and only if the provided function evaluates to true for all elements. This is a short-circuiting operation.

val count : ('a_t ‑> f:('a ‑> bool) ‑> int

Returns the number of elements for which the provided function evaluates to true.

val sum : (module Commutative_group.S with type t = 'sum) ‑> ('a_t ‑> f:('a ‑> 'sum) ‑> 'sum

Returns the sum of f i for i in the container

val find : ('a_t ‑> f:('a ‑> bool) ‑> 'a option

Returns as an option the first element for which f evaluates to true.

val find_map : ('a_t ‑> f:('a ‑> 'b option) ‑> 'b option

Returns the first evaluation of f that returns Some, and returns None if there is no such element.

val to_list : ('a_t ‑> 'a list
val to_array : ('a_t ‑> 'a array
val min_elt : ('a_t ‑> cmp:('a ‑> 'a ‑> int) ‑> 'a option

Returns a min (resp max) element from the collection using the provided cmp function. In case of a tie, the first element encountered while traversing the collection is returned. The implementation uses fold so it has the same complexity as fold. Returns None iff the collection is empty.

val max_elt : ('a_t ‑> cmp:('a ‑> 'a ‑> int) ‑> 'a option
type ('a, 'cmp) tree
val invariants : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> bool
val mem : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> 'a ‑> bool
val add : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> 'a ‑> ('a'cmpt
val remove : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> 'a ‑> ('a'cmpt
val union : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> ('a'cmpt ‑> ('a'cmpt
val inter : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> ('a'cmpt ‑> ('a'cmpt
val diff : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> ('a'cmpt ‑> ('a'cmpt
val symmetric_diff : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> ('a'cmpt ‑> ('a'aEither.t Sequence.t
val compare_direct : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> ('a'cmpt ‑> int
val equal : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> ('a'cmpt ‑> bool
val is_subset : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> of_:('a'cmpt ‑> bool
val subset : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> ('a'cmpt ‑> bool
val fold_until : ('a_t ‑> init:'accum ‑> f:('accum ‑> 'a ‑> ('accum'stopContinue_or_stop.t) ‑> ('accum'stopFinished_or_stopped_early.t
val fold_right : ('a_t ‑> init:'accum ‑> f:('a ‑> 'accum ‑> 'accum) ‑> 'accum
val iter2 : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> ('a'cmpt ‑> f:([ `Left of 'a | `Right of 'a | `Both of 'a * 'a ] ‑> unit) ‑> unit
val filter : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> f:('a ‑> bool) ‑> ('a'cmpt
val partition_tf : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> f:('a ‑> bool) ‑> ('a'cmpt * ('a'cmpt
val elements : ('a_t ‑> 'a list
val min_elt : ('a_t ‑> 'a option
val min_elt_exn : ('a_t ‑> 'a
val max_elt : ('a_t ‑> 'a option
val max_elt_exn : ('a_t ‑> 'a
val choose : ('a_t ‑> 'a option
val choose_exn : ('a_t ‑> 'a
val split : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> 'a ‑> ('a'cmpt * 'a option * ('a'cmpt
val group_by : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> equiv:('a ‑> 'a ‑> bool) ‑> ('a'cmpt list
val find_exn : ('a_t ‑> f:('a ‑> bool) ‑> 'a
val find_index : ('a_t ‑> int ‑> 'a option
val nth : ('a_t ‑> int ‑> 'a option
val remove_index : comparator:('a'cmpComparator.t ‑> ('a'cmpt ‑> int ‑> ('a'cmpt
val to_tree : ('a'cmpt ‑> ('a'cmptree
val to_sequence : comparator:('a'cmpComparator.t ‑> ?order:[ `Increasing | `Decreasing ] ‑> ?greater_or_equal_to:'a ‑> ?less_or_equal_to:'a ‑> ('a'cmpt ‑> 'a Sequence.t
val merge_to_sequence : comparator:('a'cmpComparator.t ‑> ?order:[ `Increasing | `Decreasing ] ‑> ?greater_or_equal_to:'a ‑> ?less_or_equal_to:'a ‑> ('a'cmpt ‑> ('a'cmpt ‑> ('a'aMerge_to_sequence_element.t Sequence.t
include Creators2_with_comparator with type (a, b) t := (a, b) t with type (a, b) tree := (a, b) tree
type ('a, 'cmp) set
type ('a, 'cmp) t
type ('a, 'cmp) tree
val empty : comparator:('a'cmpComparator.t ‑> ('a'cmpt
val singleton : comparator:('a'cmpComparator.t ‑> 'a ‑> ('a'cmpt
val union_list : comparator:('a'cmpComparator.t ‑> ('a'cmpt list ‑> ('a'cmpt
val of_list : comparator:('a'cmpComparator.t ‑> 'a list ‑> ('a'cmpt
val of_array : comparator:('a'cmpComparator.t ‑> 'a array ‑> ('a'cmpt
val of_sorted_array : comparator:('a'cmpComparator.t ‑> 'a array ‑> ('a'cmpt Or_error.t
val of_sorted_array_unchecked : comparator:('a'cmpComparator.t ‑> 'a array ‑> ('a'cmpt
val of_increasing_iterator_unchecked : comparator:('a'cmpComparator.t ‑> len:int ‑> f:(int ‑> 'a) ‑> ('a'cmpt
val stable_dedup_list : comparator:('a'cmpComparator.t ‑> 'a list ‑> 'a list
val map : comparator:('b'cmpComparator.t ‑> ('a_set ‑> f:('a ‑> 'b) ‑> ('b'cmpt
val filter_map : comparator:('b'cmpComparator.t ‑> ('a_set ‑> f:('a ‑> 'b option) ‑> ('b'cmpt
val of_tree : comparator:('a'cmpComparator.t ‑> ('a'cmptree ‑> ('a'cmpt