(int n)
| 439 | } |
| 440 | |
| 441 | public Sequential drop(int n) { |
| 442 | if(n < cnt) { |
| 443 | int offset = n%32; |
| 444 | return new ChunkedSeq(this, this.arrayFor(n), n-offset, offset); |
| 445 | } else { |
| 446 | return null; |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | static public final class ChunkedSeq extends ASeq implements IChunkedSeq,Counted,IReduce,IDrop{ |
| 451 |