* Materializes all deferred additions into the backing set.
()
| 85 | * Materializes all deferred additions into the backing set. |
| 86 | */ |
| 87 | _merge() { |
| 88 | this._flatten(); |
| 89 | merge(this._set, this._toMerge); |
| 90 | this._toMerge.clear(); |
| 91 | this._needMerge = false; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Reports whether the set is empty without forcing a full merge. |