Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
48
public
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
56
public
IChunk chunkedFirst(){
57
return
chunk;
Callers
nothing calls this directly
Calls
2
count
Method · 0.65
dropFirst
Method · 0.65
Tested by
no test coverage detected