module Make: functor (Ord : Stdlib.Set.OrderedType) -> S with type elt = Ord.t
functor (
Ord
:
Stdlib.Set.OrderedType
) ->
S
with type elt = Ord.t
include Set.S
val add_list : t -> elt list -> t
t -> elt list -> t
Extends a set with a list.
val of_list : elt list -> t
elt list -> t
Convert a list to a set.
val to_list : t -> elt list
t -> elt list
Shortcut for Set.elements.
Set.elements