* @param {string} ops - String encoding the change operations to iterate over.
(ops: string)
| 15 | * @param {string} ops - String encoding the change operations to iterate over. |
| 16 | */ |
| 17 | constructor(ops: string) { |
| 18 | this.gen = deserializeOps(ops); |
| 19 | this._next = this.gen.next(); |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * @returns {boolean} Whether there are any remaining operations. |