Options
All
  • Public
  • Public/Protected
  • All
Menu

Set Iterables only represent values. They have no associated keys or indices. Duplicate values are possible in Seq.Sets, however the concrete Set does not allow duplicate values.

Iterable methods on Iterable.Set such as map and forEach will provide the value as both the first and second arguments to the provided function.

var seq = Seq.Set.of('A', 'B', 'C');
assert.equal(seq.every((v, k) => v === k), true);

Generated using TypeDoc