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

Method readRet

src/jvm/clojure/lang/RT.java:1818–1822  ·  view source on GitHub ↗
(int ret)

Source from the content-addressed store, hash-verified

1816///////////////////////////////// reader support ////////////////////////////////
1817
1818static Character readRet(int ret){
1819 if(ret == -1)
1820 return null;
1821 return box((char) ret);
1822}
1823
1824static public Character readChar(Reader r) throws IOException{
1825 int ret = r.read();

Callers 2

readCharMethod · 0.95
peekCharMethod · 0.95

Calls 1

boxMethod · 0.95

Tested by

no test coverage detected