Module Set.Poly
A polymorphic Set.
include Base__.Set_intf.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 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 Base__.Set_intf.Accessors1 with type 'elt t = ('elt, Base__.Comparator.Poly.comparator_witness) t
val merge_to_sequence : ?order:[ `Increasing | `Decreasing ] -> ?greater_or_equal_to:'a -> ?less_or_equal_to:'a -> 'a t -> 'a t -> ('a, 'a) Base__.Set_intf.Merge_to_sequence_element.t Sequence.tval binary_search_segmented : 'a t -> segment_of:('a -> [ `Left | `Right ]) -> [ `Last_on_left | `First_on_right ] -> 'a optionval 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 to_sequence : ?order:[ `Increasing | `Decreasing ] -> ?greater_or_equal_to:'a -> ?less_or_equal_to:'a -> 'a t -> 'a Sequence.tval to_tree : 'a t -> 'a treeval remove_index : 'a t -> int -> 'a tval nth : 'a t -> int -> 'a optionval find_exn : 'a t -> f:('a -> bool) -> 'aval group_by : 'a t -> equiv:('a -> 'a -> bool) -> 'a t listval split : 'a t -> 'a -> 'a t * 'a option * 'a tval choose_exn : 'a t -> 'aval choose : 'a t -> 'a optionval max_elt_exn : 'a t -> 'aval max_elt : 'a t -> 'a optionval min_elt_exn : 'a t -> 'aval min_elt : 'a t -> 'a optionval elements : 'a t -> 'a listval partition_tf : 'a t -> f:('a -> bool) -> 'a t * 'a tval filter : 'a t -> f:('a -> bool) -> 'a tval iter2 : 'a t -> 'a t -> f:([ `Left of 'a | `Right of 'a | `Both of 'a * 'a ] -> unit) -> unitval fold_right : 'a t -> init:'b -> f:('a -> 'b -> 'b) -> 'bval fold_until : 'a t -> init:'b -> f:('b -> 'a -> ('b, 'final) Base__.Container_intf.Export.Continue_or_stop.t) -> finish:('b -> 'final) -> 'final
module Named : sig ... endval is_subset : 'a t -> of_:'a t -> boolval equal : 'a t -> 'a t -> boolval compare_direct : 'a t -> 'a t -> intval symmetric_diff : 'a t -> 'a t -> ('a, 'a) Base__.Either.t Sequence.tval diff : 'a t -> 'a t -> 'a tval inter : 'a t -> 'a t -> 'a tval union : 'a t -> 'a t -> 'a tval remove : 'a t -> 'a -> 'a tval add : 'a t -> 'a -> 'a tval mem : 'a t -> 'a -> boolval invariants : _ t -> bool
include 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) Result.t) -> ('accum, 'e) 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