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

Method box

src/jvm/clojure/lang/RT.java:1037–1039  ·  view source on GitHub ↗

Boxing/casts

(Object x)

Source from the content-addressed store, hash-verified

1035 * ********************* Boxing/casts ******************************
1036 */
1037static public Object box(Object x){
1038 return x;
1039}
1040
1041static public Character box(char x){
1042 return Character.valueOf(x);

Callers 1

readRetMethod · 0.95

Calls 1

valueOfMethod · 0.45

Tested by

no test coverage detected