Set
Module Collections.Sets
A set stores unique items. But what constitutes ‘unique’? The default Javascript Set compares basic data types by value (eg numbers, strings), but objects by reference. The ixfx set favours comparing by value also for objects. This is particularly important when we work with immutable data.
Immutable
Sets.immutable creates an immutable set of Interface Sets.ISetImmutable
Mutable
Sets.mutable creates a set of Interface Sets.ISetMutable . The mutable set has events to monitor changes to data.