Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/clojure/clojure
/ unwrap
Method
unwrap
src/jvm/clojure/lang/LazySeq.java:73–78 ·
view source on GitHub ↗
(Object ls)
Source
from the content-addressed store, hash-verified
71
}
72
73
final
private
Object unwrap(Object ls){
74
while
(ls instanceof LazySeq) {
75
ls = ((LazySeq) ls).sval();
76
}
77
return
ls;
78
}
79
80
final
private
void
realize() {
81
Lock l = lock;
Callers
1
realize
Method · 0.95
Calls
1
sval
Method · 0.80
Tested by
no test coverage detected