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

Class Reduced

src/jvm/clojure/lang/Reduced.java:13–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11package clojure.lang;
12
13public final class Reduced implements IDeref{
14Object val;
15
16public Reduced(Object val){
17 this.val = val;
18}
19
20public Object deref(){
21 return val;
22}
23}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected