Using_comparator.TreeSourceA Tree.t contains just the tree data structure that a set is based on, without including the comparator. Accordingly, any operation on a Tree.t must also take as an argument the corresponding comparator.
val sexp_of_t :
('a -> Sexplib0.Sexp.t) ->
('cmp -> Sexplib0.Sexp.t) ->
('a, 'cmp) t ->
Sexplib0.Sexp.tval t_of_sexp_direct :
comparator:('elt, 'cmp) Comparator.t ->
(Sexp.t -> 'elt) ->
Sexp.t ->
('elt, 'cmp) tinclude Container.S1_phantom_invariant with type ('a, 'b) t := ('a, 'b) tfold 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, 'e) Result.t) ->
('accum, 'e) Result.tfold_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.
Returns true if and only if there exists an element for which the provided function evaluates to true. This is a short-circuiting operation.
Returns true if and only if the provided function evaluates to true for all elements. This is a short-circuiting operation.
Returns the number of elements for which the provided function evaluates to true.
val sum :
(module Container.Summable with type t = 'sum) ->
('a, _) t ->
f:('a -> 'sum) ->
'sumReturns the sum of f i for all i in the container.
Returns as an option the first element for which f evaluates to true.
Returns the first evaluation of f that returns Some, and returns None if there is no such element.
val union :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
('a, 'cmp) t ->
('a, 'cmp) tval inter :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
('a, 'cmp) t ->
('a, 'cmp) tval symmetric_diff :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
('a, 'cmp) t ->
('a, 'a) Either.t Sequence.tval compare_direct :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
('a, 'cmp) t ->
intval is_subset :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
of_:('a, 'cmp) t ->
boolval fold_until :
('a, _) t ->
init:'accum ->
f:('accum -> 'a -> ('accum, 'final) Container.Continue_or_stop.t) ->
finish:('accum -> 'final) ->
'finalval iter2 :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
('a, 'cmp) t ->
f:([ `Left of 'a | `Right of 'a | `Both of 'a * 'a ] -> unit) ->
unitval filter :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
f:('a -> bool) ->
('a, 'cmp) tval partition_tf :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
f:('a -> bool) ->
('a, 'cmp) t * ('a, 'cmp) tval split :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
'a ->
('a, 'cmp) t * 'a option * ('a, 'cmp) tval group_by :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
equiv:('a -> 'a -> bool) ->
('a, 'cmp) t listval to_sequence :
comparator:('a, 'cmp) Comparator.t ->
?order:[ `Increasing | `Decreasing ] ->
?greater_or_equal_to:'a ->
?less_or_equal_to:'a ->
('a, 'cmp) t ->
'a Sequence.tval binary_search :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
compare:('a -> 'key -> int) ->
Binary_searchable.Which_target_by_key.t ->
'key ->
'a optionval binary_search_segmented :
comparator:('a, 'cmp) Comparator.t ->
('a, 'cmp) t ->
segment_of:('a -> [ `Left | `Right ]) ->
Binary_searchable.Which_target_by_segment.t ->
'a optionval merge_to_sequence :
comparator:('a, 'cmp) Comparator.t ->
?order:[ `Increasing | `Decreasing ] ->
?greater_or_equal_to:'a ->
?less_or_equal_to:'a ->
('a, 'cmp) t ->
('a, 'cmp) t ->
('a, 'a) Sequence.Merge_with_duplicates_element.t Sequence.tval of_sorted_array :
comparator:('a, 'cmp) Comparator.t ->
'a array ->
('a, 'cmp) t Or_error.tval of_sorted_array_unchecked :
comparator:('a, 'cmp) Comparator.t ->
'a array ->
('a, 'cmp) tval of_increasing_iterator_unchecked :
comparator:('a, 'cmp) Comparator.t ->
len:int ->
f:(int -> 'a) ->
('a, 'cmp) tval filter_map :
comparator:('b, 'cmp) Comparator.t ->
('a, _) t ->
f:('a -> 'b option) ->
('b, 'cmp) t