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

Method readChar

src/jvm/clojure/lang/RT.java:1824–1827  ·  view source on GitHub ↗
(Reader r)

Source from the content-addressed store, hash-verified

1822}
1823
1824static public Character readChar(Reader r) throws IOException{
1825 int ret = r.read();
1826 return readRet(ret);
1827}
1828
1829static public Character peekChar(Reader r) throws IOException{
1830 int ret;

Callers

nothing calls this directly

Calls 2

readRetMethod · 0.95
readMethod · 0.45

Tested by

no test coverage detected