* Deletes an item after first materializing any deferred additions that may * contain it. * @param {T} value an item * @returns {boolean} true, if the value was in the Set before
(value)
| 169 | * @returns {boolean} true, if the value was in the Set before |
| 170 | */ |
| 171 | delete(value) { |
| 172 | if (this._needMerge) this._merge(); |
| 173 | return this._set.delete(value); |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Returns the set's entry iterator and permanently switches future |
no test coverage detected