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

Method force

src/jvm/clojure/lang/Delay.java:31–35  ·  view source on GitHub ↗
(Object x)

Source from the content-addressed store, hash-verified

29}
30
31static public Object force(Object x) {
32 return (x instanceof Delay) ?
33 ((Delay) x).deref()
34 : x;
35}
36
37private void realize() {
38 Lock l = lock;

Callers

nothing calls this directly

Calls 1

derefMethod · 0.65

Tested by

no test coverage detected