module CS:Kwset.Make
(
Char
)
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
list
: the listval to_list : t -> elt list
to_list set
: create a list from the items in a set.set
: the set