* Adds a single item immediately to the concrete backing set. * @param {T} item an item * @returns {LazySet<T>} itself
(item)
| 118 | * @returns {LazySet<T>} itself |
| 119 | */ |
| 120 | add(item) { |
| 121 | this._set.add(item); |
| 122 | return this; |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Queues another iterable or lazy set for later merging so large bulk adds |
no outgoing calls
no test coverage detected