A Collection of unique values with O(log32 N) adds and has.
When iterating a Set, the entries will be (value, value) pairs. Iteration
order of a Set is undefined, however is stable. Multiple iterations of the
same Set will iterate in the same order.
Set values, like Map keys, may be of any type. Equality is determined using
Immutable.is, enabling Sets to uniquely include other Immutable
collections, custom value types, and NaN.
A Collection of unique values with
O(log32 N)
adds and has.When iterating a Set, the entries will be (value, value) pairs. Iteration order of a Set is undefined, however is stable. Multiple iterations of the same Set will iterate in the same order.
Set values, like Map keys, may be of any type. Equality is determined using
Immutable.is
, enabling Sets to uniquely include other Immutable collections, custom value types, and NaN.