* Adds an item to the unsorted staging area so sorting can be deferred until * an ordered pop is requested. * @param {T} item an item * @returns {void}
(item)
| 80 | * @returns {void} |
| 81 | */ |
| 82 | add(item) { |
| 83 | this.size++; |
| 84 | this._unsortedItems.add(item); |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Inserts an item into the correct nested bucket, creating intermediate |
no outgoing calls
no test coverage detected