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

Method chunkedMore

src/jvm/clojure/lang/LongRange.java:129–136  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

127}
128
129public 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
138public Sequential drop(int n) {
139 if(n <= 0) {

Callers 1

chunkedNextMethod · 0.95

Calls 1

createMethod · 0.95

Tested by

no test coverage detected