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

Method readString

src/jvm/clojure/lang/EdnReader.java:65–68  ·  view source on GitHub ↗
(String s, IPersistentMap opts)

Source from the content-addressed store, hash-verified

63}
64
65static public Object readString(String s, IPersistentMap opts){
66 PushbackReader r = new PushbackReader(new java.io.StringReader(s));
67 return read(r, opts);
68}
69
70static boolean isWhitespace(int ch){
71 return Character.isWhitespace(ch) || ch == ',';

Callers

nothing calls this directly

Calls 1

readMethod · 0.95

Tested by

no test coverage detected