module Make: functor (
Ord
:
Set.OrderedType
) ->
sig
.. end
include struct ... end
val map : (elt -> elt) -> t -> t
map f t
: returns a new set that is the result of applying f
to each element of t
.
val replace : elt -> elt -> t -> t
replace a b t
: returns a new set in which a
is replaced with b
.
val of_list : elt list -> t
create a set from the items in a list
Returns the set
list
: the list
val to_list : t -> elt list
to_list set
: create a list from the items in a set.
Returns the list
set
: the set