keen/col/set
SourceThis is a standard module
and does not need to be explicitly imported.
set[t] record (has private fields)~[t] t set(a t set, value t) t keyAdds an element to the set. If it was already in the set, returns
a unmodified.|[t] t set(a t set, b t set) t keyUnion of two sets. This is a set containing all elements in either
a or b.&[t] t set(a t set, b t set) t keyIntersection of two sets. This is a set containing all elements in both
a and b.-[t] t set(a t set, b t set) t keySet difference. This is a set containing all elements in
a but not in b.