()
| 127 | } |
| 128 | |
| 129 | public ISeq chunkedMore() { |
| 130 | if(count <= CHUNK_SIZE) { |
| 131 | return PersistentList.EMPTY; |
| 132 | } else { |
| 133 | return LongRange.create(start + (step * CHUNK_SIZE), end, step); |
| 134 | } |
| 135 | |
| 136 | } |
| 137 | |
| 138 | public Sequential drop(int n) { |
| 139 | if(n <= 0) { |