Module Set.Make
Functor building an implementation of the set structure given a totally ordered type.
Parameters
Signature
type elt
= Ord.t
The type of the set elements.
val empty : t
The empty set.
val is_empty : t -> bool
Test whether a set is empty or not.
val add : elt -> t -> t
add x s
returns a set containing all elements ofs
, plusx
. Ifx
was already ins
,s
is returned unchanged (the result of the function is then physically equal tos
).- before 4.03
Physical equality was not ensured.
val remove : elt -> t -> t
remove x s
returns a set containing all elements ofs
, exceptx
. Ifx
was not ins
,s
is returned unchanged (the result of the function is then physically equal tos
).- before 4.03
Physical equality was not ensured.
val compare : t -> t -> int
Total ordering between sets. Can be used as the ordering function for doing sets of sets.
val equal : t -> t -> bool
equal s1 s2
tests whether the setss1
ands2
are equal, that is, contain equal elements.
val iter : (elt -> unit) -> t -> unit
iter f s
appliesf
in turn to all elements ofs
. The elements ofs
are presented tof
in increasing order with respect to the ordering over the type of the elements.
val map : (elt -> elt) -> t -> t
map f s
is the set whose elements aref a0
,f a1
...f aN
, wherea0
,a1
...aN
are the elements ofs
.The elements are passed to
f
in increasing order with respect to the ordering over the type of the elements.If no element of
s
is changed byf
,s
is returned unchanged. (If each output off
is physically equal to its input, the returned set is physically equal tos
.)- since
- 4.04.0
val fold : (elt -> 'a -> 'a) -> t -> 'a -> 'a
fold f s a
computes(f xN ... (f x2 (f x1 a))...)
, wherex1 ... xN
are the elements ofs
, in increasing order.
val for_all : (elt -> bool) -> t -> bool
for_all p s
checks if all elements of the set satisfy the predicatep
.
val exists : (elt -> bool) -> t -> bool
exists p s
checks if at least one element of the set satisfies the predicatep
.
val filter : (elt -> bool) -> t -> t
filter p s
returns the set of all elements ins
that satisfy predicatep
. Ifp
satisfies every element ins
,s
is returned unchanged (the result of the function is then physically equal tos
).- before 4.03
Physical equality was not ensured.
val partition : (elt -> bool) -> t -> t * t
partition p s
returns a pair of sets(s1, s2)
, wheres1
is the set of all the elements ofs
that satisfy the predicatep
, ands2
is the set of all the elements ofs
that do not satisfyp
.
val cardinal : t -> int
Return the number of elements of a set.
val elements : t -> elt list
Return the list of all elements of the given set. The returned list is sorted in increasing order with respect to the ordering
Ord.compare
, whereOrd
is the argument given toSet.Make
.
val min_elt : t -> elt
Return the smallest element of the given set (with respect to the
Ord.compare
ordering), or raiseNot_found
if the set is empty.
val min_elt_opt : t -> elt option
Return the smallest element of the given set (with respect to the
Ord.compare
ordering), orNone
if the set is empty.- since
- 4.05
val max_elt : t -> elt
Same as
Set.S.min_elt
, but returns the largest element of the given set.
val max_elt_opt : t -> elt option
Same as
Set.S.min_elt_opt
, but returns the largest element of the given set.- since
- 4.05
val choose : t -> elt
Return one element of the given set, or raise
Not_found
if the set is empty. Which element is chosen is unspecified, but equal elements will be chosen for equal sets.
val choose_opt : t -> elt option
Return one element of the given set, or
None
if the set is empty. Which element is chosen is unspecified, but equal elements will be chosen for equal sets.- since
- 4.05
val split : elt -> t -> t * bool * t
split x s
returns a triple(l, present, r)
, wherel
is the set of elements ofs
that are strictly less thanx
;r
is the set of elements ofs
that are strictly greater thanx
;present
isfalse
ifs
contains no element equal tox
, ortrue
ifs
contains an element equal tox
.
val find : elt -> t -> elt
find x s
returns the element ofs
equal tox
(according toOrd.compare
), or raiseNot_found
if no such element exists.- since
- 4.01.0
val find_opt : elt -> t -> elt option
find_opt x s
returns the element ofs
equal tox
(according toOrd.compare
), orNone
if no such element exists.- since
- 4.05
val find_first : (elt -> bool) -> t -> elt
find_first f s
, wheref
is a monotonically increasing function, returns the lowest elemente
ofs
such thatf e
, or raisesNot_found
if no such element exists.For example,
find_first (fun e -> Ord.compare e x >= 0) s
will return the first elemente
ofs
whereOrd.compare e x >= 0
(intuitively:e >= x
), or raiseNot_found
ifx
is greater than any element ofs
.- since
- 4.05
val find_first_opt : (elt -> bool) -> t -> elt option
find_first_opt f s
, wheref
is a monotonically increasing function, returns an option containing the lowest elemente
ofs
such thatf e
, orNone
if no such element exists.- since
- 4.05
val find_last : (elt -> bool) -> t -> elt
find_last f s
, wheref
is a monotonically decreasing function, returns the highest elemente
ofs
such thatf e
, or raisesNot_found
if no such element exists.- since
- 4.05
val find_last_opt : (elt -> bool) -> t -> elt option
find_last_opt f s
, wheref
is a monotonically decreasing function, returns an option containing the highest elemente
ofs
such thatf e
, orNone
if no such element exists.- since
- 4.05
val of_list : elt list -> t
of_list l
creates a set from a list of elements. This is usually more efficient than foldingadd
over the list, except perhaps for lists with many duplicated elements.- since
- 4.02.0
Iterators
val to_seq_from : elt -> t -> elt Stdlib.Seq.t
to_seq_from x s
iterates on a subset of the elements ofs
in ascending order, fromx
or above.- since
- 4.07
val to_seq : t -> elt Stdlib.Seq.t
Iterate on the whole set, in ascending order
- since
- 4.07
val add_seq : elt Stdlib.Seq.t -> t -> t
Add the given elements to the set, in order.
- since
- 4.07
val of_seq : elt Stdlib.Seq.t -> t
Build a set from the given bindings
- since
- 4.07