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

Method more

src/jvm/clojure/lang/ChunkedCons.java:48–54  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

46}
47
48public ISeq more(){
49 if(chunk.count() > 1)
50 return new ChunkedCons(chunk.dropFirst(), _more);
51 if(_more == null)
52 return PersistentList.EMPTY;
53 return _more;
54}
55
56public IChunk chunkedFirst(){
57 return chunk;

Callers

nothing calls this directly

Calls 2

countMethod · 0.65
dropFirstMethod · 0.65

Tested by

no test coverage detected