Module Set.Poly
A polymorphic Set.
include Creators1 with type 'a t := 'a t with type 'a tree := 'a tree with type comparator_witness := comparator_witness
val of_tree : 'a tree -> 'a tval filter_map : ('a, _) set -> f:('a -> 'b option) -> 'a tval map : ('a, _) set -> f:('a -> 'b) -> 'a tval stable_dedup_list : 'a list -> 'a listval of_increasing_iterator_unchecked : len:int -> f:(int -> 'a) -> 'a tval of_sorted_array_unchecked : 'a array -> 'a tval of_sorted_array : 'a array -> 'a t Base.Or_error.tval of_array : 'a array -> 'a tval of_list : 'a list -> 'a tval union_list : 'a t list -> 'a tval singleton : 'a -> 'a tval empty : 'a t
include Accessors1
include Base.Container.S1 with type 'elt t = ('elt, Base__.Comparator.Poly.comparator_witness) t
type 'elt t= ('elt, Base__.Comparator.Poly.comparator_witness) t
val mem : 'a t -> 'a -> equal:('a -> 'a -> bool) -> boolval 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 fold_until : 'a t -> init:'accum -> f:('accum -> 'a -> ('accum, 'final) Base__.Container_intf.Export.Continue_or_stop.t) -> finish:('accum -> 'final) -> 'finalval 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 arrayval min_elt : 'a t -> compare:('a -> 'a -> int) -> 'a optionval max_elt : 'a t -> compare:('a -> 'a -> int) -> 'a option
val invariants : _ 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
module Named : sig ... endval fold_until : 'a t -> init:'b -> f:('b -> 'a -> ('b, 'final) 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:([ `Left of 'a | `Right of 'a | `Both of 'a * '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:[ `Increasing | `Decreasing ] -> ?greater_or_equal_to:'a -> ?less_or_equal_to:'a -> 'a t -> 'a Base.Sequence.tval binary_search : 'a t -> compare:('a -> 'key -> int) -> [ `Last_strictly_less_than | `Last_less_than_or_equal_to | `Last_equal_to | `First_equal_to | `First_greater_than_or_equal_to | `First_strictly_greater_than ] -> 'key -> 'a optionval binary_search_segmented : 'a t -> segment_of:('a -> [ `Left | `Right ]) -> [ `Last_on_left | `First_on_right ] -> 'a optionval merge_to_sequence : ?order:[ `Increasing | `Decreasing ] -> ?greater_or_equal_to:'a -> ?less_or_equal_to:'a -> 'a t -> 'a t -> ('a, 'a) Merge_to_sequence_element.t Base.Sequence.t