MCPcopy Index your code
hub / github.com/clojure/clojure / drop

Method drop

src/jvm/clojure/lang/PersistentVector.java:441–448  ·  view source on GitHub ↗
(int n)

Source from the content-addressed store, hash-verified

439}
440
441public 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
450static public final class ChunkedSeq extends ASeq implements IChunkedSeq,Counted,IReduce,IDrop{
451

Callers

nothing calls this directly

Calls 1

arrayForMethod · 0.95

Tested by

no test coverage detected