type 'elt t = ('elt, Core_kernel.Comparator.Poly.comparator_witness) Tree.t
type 'a named = ('a, Core_kernel.Comparator.Poly.comparator_witness) Tree.Named.t
include Core_kernel.Set_intf.Creators_and_accessors1 with type ('a, 'b) set := ('a, 'b) Tree.t with type 'elt t := 'elt t with type 'elt tree := 'elt t with type 'a named := 'a named with type comparator_witness := Core_kernel.Comparator.Poly.comparator_witness
include Core_kernel.Set_intf.Accessors1
include Core_kernel.Set_intf.Set.Accessors1
type 'a t
val length : 'a t -> intval is_empty : 'a t -> boolval iter : 'a t -> f:('a -> unit) -> unitval fold : 'a t -> init:'accum -> f:('accum -> 'a -> 'accum) -> 'accumval fold_result : 'a t -> init:'accum -> f:('accum -> 'a -> ('accum, 'e) Base.Result.t) -> ('accum, 'e) Base.Result.tval exists : 'a t -> f:('a -> bool) -> boolval for_all : 'a t -> f:('a -> bool) -> boolval count : 'a t -> f:('a -> bool) -> intval sum : (module Base__.Container_intf.Summable with type t = 'sum) -> 'a t -> f:('a -> 'sum) -> 'sumval find : 'a t -> f:('a -> bool) -> 'a optionval find_map : 'a t -> f:('a -> 'b option) -> 'b optionval to_list : 'a t -> 'a listval to_array : 'a t -> 'a array
type 'a treetype comparator_witness
val invariants : 'a t -> boolval mem : 'a t -> 'a -> boolval add : 'a t -> 'a -> 'a tval remove : 'a t -> 'a -> 'a tval union : 'a t -> 'a t -> 'a tval inter : 'a t -> 'a t -> 'a tval diff : 'a t -> 'a t -> 'a tval symmetric_diff : 'a t -> 'a t -> ('a, 'a) Base.Either.t Base.Sequence.tval compare_direct : 'a t -> 'a t -> intval equal : 'a t -> 'a t -> boolval is_subset : 'a t -> of_:'a t -> bool
type 'a named
module Named : sig ... endval fold_until : 'a t -> init:'b -> f:('b -> 'a -> ('b, 'final) Base__.Set_intf.Continue_or_stop.t) -> finish:('b -> 'final) -> 'finalval fold_right : 'a t -> init:'b -> f:('a -> 'b -> 'b) -> 'bval iter2 : 'a t -> 'a t -> f:([ `Both of 'a * 'a | `Left of 'a | `Right of 'a ] -> unit) -> unitval filter : 'a t -> f:('a -> bool) -> 'a tval partition_tf : 'a t -> f:('a -> bool) -> 'a t * 'a tval elements : 'a t -> 'a listval min_elt : 'a t -> 'a optionval min_elt_exn : 'a t -> 'aval max_elt : 'a t -> 'a optionval max_elt_exn : 'a t -> 'aval choose : 'a t -> 'a optionval choose_exn : 'a t -> 'aval split : 'a t -> 'a -> 'a t * 'a option * 'a tval group_by : 'a t -> equiv:('a -> 'a -> bool) -> 'a t listval find_exn : 'a t -> f:('a -> bool) -> 'aval nth : 'a t -> int -> 'a optionval remove_index : 'a t -> int -> 'a tval to_tree : 'a t -> 'a treeval to_sequence : ?order:[ `Decreasing | `Increasing ] -> ?greater_or_equal_to:'a -> ?less_or_equal_to:'a -> 'a t -> 'a Base.Sequence.tval binary_search : 'a t -> compare:('a -> 'key -> int) -> [ `First_equal_to | `First_greater_than_or_equal_to | `First_strictly_greater_than | `Last_equal_to | `Last_less_than_or_equal_to | `Last_strictly_less_than ] -> 'key -> 'a optionval binary_search_segmented : 'a t -> segment_of:('a -> [ `Left | `Right ]) -> [ `First_on_right | `Last_on_left ] -> 'a optionval merge_to_sequence : ?order:[ `Decreasing | `Increasing ] -> ?greater_or_equal_to:'a -> ?less_or_equal_to:'a -> 'a t -> 'a t -> ('a, 'a) Base__.Set_intf.Merge_to_sequence_element.t Base.Sequence.t
val to_map : 'a t -> f:('a -> 'b) -> ('a, 'b, comparator_witness) Base.Map.tval quickcheck_observer : 'a Core_kernel.Quickcheck.Observer.t -> 'a t Core_kernel.Quickcheck.Observer.tval quickcheck_shrinker : 'a Core_kernel.Quickcheck.Shrinker.t -> 'a t Core_kernel.Quickcheck.Shrinker.t