MCPcopy 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
73final private Object unwrap(Object ls){
74 while(ls instanceof LazySeq) {
75 ls = ((LazySeq) ls).sval();
76 }
77 return ls;
78}
79
80final private void realize() {
81 Lock l = lock;

Callers 1

realizeMethod · 0.95

Calls 1

svalMethod · 0.80

Tested by

no test coverage detected