module type GSet =sig
..end
include Immutable_types.Mergeable
type
elt
GSet
val add : elt -> t -> t
add el t
adds el
to t
.val value : t -> elt list
value t
gets the raw state of t
.val lookup : elt -> t -> bool
lookup el t
returns true if el
is in t
.