()
| 136 | } |
| 137 | |
| 138 | public ISeq next() { |
| 139 | if(_next != null) |
| 140 | return _next; |
| 141 | |
| 142 | forceChunk(); |
| 143 | if(_chunk.count() > 1) { |
| 144 | IChunk smallerChunk = _chunk.dropFirst(); |
| 145 | _next = new Range(smallerChunk.nth(0), end, step, boundsCheck, smallerChunk, _chunkNext); |
| 146 | return _next; |
| 147 | } |
| 148 | return chunkedNext(); |
| 149 | } |
| 150 | |
| 151 | public IChunk chunkedFirst() { |
| 152 | forceChunk(); |
nothing calls this directly
no test coverage detected