* Whether the end of iteration is reached.
()
| 60 | * Whether the end of iteration is reached. |
| 61 | */ |
| 62 | atEnd() { |
| 63 | return this.currCell_ === null || |
| 64 | this.currCell_.data === null || |
| 65 | this.currCellPos_ >= this.currCell_.data.length; |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Returns the current item, moves to the next one. |
no outgoing calls
no test coverage detected