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

Method uncheckedCharCast

src/jvm/clojure/lang/RT.java:1456–1460  ·  view source on GitHub ↗
(Object x)

Source from the content-addressed store, hash-verified

1454}
1455
1456static public char uncheckedCharCast(Object x){
1457 if(x instanceof Character)
1458 return ((Character) x).charValue();
1459 return (char) ((Number) x).longValue();
1460}
1461
1462static public char uncheckedCharCast(byte x){
1463 return (char) x;

Callers

nothing calls this directly

Calls 1

longValueMethod · 0.45

Tested by

no test coverage detected