Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
31
static
public
Object force(Object x) {
32
return
(x instanceof Delay) ?
33
((Delay) x).deref()
34
: x;
35
}
36
37
private
void
realize() {
38
Lock l = lock;
Callers
nothing calls this directly
Calls
1
deref
Method · 0.65
Tested by
no test coverage detected