Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
module Elt : sig ... end
include Core.Set_intf.S_plain with module Elt := Elt
type t = (Elt.t, Elt.comparator_witness) Base.Set.t
include Ppx_compare_lib.Comparable.S with type t := t
type named = (Elt.t, Elt.comparator_witness) Base.Set.Named.t
include Core.Set_intf.Creators_and_accessors0
with type ('a, 'b) set := ('a, 'b) Base.Set.t
with type t := t
with type tree :=
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.Tree.t
with type elt := Elt.t
with type named := named
with type comparator_witness := Elt.comparator_witness
include Core.Set_intf.Accessors0
with type t := t
with type tree :=
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.Tree.t
with type elt := Elt.t
with type named := named
with type comparator_witness := Elt.comparator_witness
include Base.Set.Accessors0
with type t := t
with type tree :=
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.Tree.t
with type elt := Elt.t
with type named := named
with type comparator_witness := Elt.comparator_witness
include Base.Container.S0 with type t := t with type elt := Elt.t
val length : t -> int
val is_empty : t -> bool
iter
must allow exceptions raised in f
to escape, terminating the iteration cleanly. The same holds for all functions below taking an f
.
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 :
t ->
init:'accum ->
f:('accum -> Elt.t -> ('accum, 'e) Base.Result.t) ->
('accum, 'e) Base.Result.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
.
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 Base.Container.Summable with type t = 'sum) ->
t ->
f:(Elt.t -> 'sum) ->
'sum
Returns 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 invariants : t -> bool
val symmetric_diff : t -> t -> (Elt.t, Elt.t) Base.Either.t Base.Sequence.t
module Named : sig ... end
val fold_until :
t ->
init:'b ->
f:('b -> Elt.t -> ('b, 'final) Base.Container.Continue_or_stop.t) ->
finish:('b -> 'final) ->
'final
val to_tree :
t ->
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.Tree.t
val to_sequence :
?order:[ `Increasing | `Decreasing ] ->
?greater_or_equal_to:Elt.t ->
?less_or_equal_to:Elt.t ->
t ->
Elt.t Base.Sequence.t
val binary_search :
t ->
compare:(Elt.t -> 'key -> int) ->
Base.Binary_searchable.Which_target_by_key.t ->
'key ->
Elt.t option
val binary_search_segmented :
t ->
segment_of:(Elt.t -> [ `Left | `Right ]) ->
Base.Binary_searchable.Which_target_by_segment.t ->
Elt.t option
val merge_to_sequence :
?order:[ `Increasing | `Decreasing ] ->
?greater_or_equal_to:Elt.t ->
?less_or_equal_to:Elt.t ->
t ->
t ->
(Elt.t, Elt.t) Base.Sequence.Merge_with_duplicates_element.t Base.Sequence.t
val to_map :
t ->
f:(Elt.t -> 'data) ->
(Elt.t, 'data, Elt.comparator_witness) Base.Map.t
val quickcheck_observer :
Elt.t Core.Quickcheck.Observer.t ->
t Core.Quickcheck.Observer.t
val quickcheck_shrinker :
Elt.t Core.Quickcheck.Shrinker.t ->
t Core.Quickcheck.Shrinker.t
include Core.Set_intf.Creators0
with type t := t
with type tree :=
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.Tree.t
with type elt := Elt.t
with type comparator_witness := Elt.comparator_witness
with type ('a, 'b) set := ('a, 'b) Base.Set.t
include Base.Set.Creators0
with type t := t
with type tree :=
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.Tree.t
with type elt := Elt.t
with type comparator_witness := Elt.comparator_witness
with type ('a, 'b) set := ('a, 'b) Base.Set.t
val empty : t
val of_sequence : Elt.t Base.Sequence.t -> t
val of_sorted_array : Elt.t array -> t Base.Or_error.t
val map : ('a, _) Base.Set.t -> f:('a -> Elt.t) -> t
val filter_map : ('a, _) Base.Set.t -> f:('a -> Elt.t option) -> t
val of_tree :
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.Tree.t ->
t
val of_hash_set : Elt.t Core.Hash_set.t -> t
val of_hashtbl_keys : (Elt.t, _) Core.Hashtbl.t -> t
val of_map_keys : (Elt.t, _, Elt.comparator_witness) Base.Map.t -> t
val quickcheck_generator :
Elt.t Core.Quickcheck.Generator.t ->
t Core.Quickcheck.Generator.t
module Provide_of_sexp (Elt : sig ... end) : sig ... end
module Provide_bin_io
(Elt : sig ... end) :
Core.Set_intf.Binable.S with type t := t
module Provide_hash (Elt : Base.Hasher.S with type t := Elt.t) : sig ... end
include Core.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t