* @returns {boolean} Whether there are any remaining operations.
()
| 23 | * @returns {boolean} Whether there are any remaining operations. |
| 24 | */ |
| 25 | hasNext(): boolean { |
| 26 | return !this._next.done; |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Returns the next operation object and advances the iterator. |
no outgoing calls
no test coverage detected