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

Method deref

src/jvm/clojure/lang/Delay.java:57–63  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

55}
56
57public Object deref() {
58 if(lock != null)
59 realize();
60 if(exception != null)
61 throw Util.sneakyThrow(exception);
62 return val;
63}
64
65public boolean isRealized(){
66 return lock == null;

Callers

nothing calls this directly

Calls 2

realizeMethod · 0.95
sneakyThrowMethod · 0.95

Tested by

no test coverage detected