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

Method printString

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

Source from the content-addressed store, hash-verified

1877}
1878
1879static public String printString(Object x){
1880 try {
1881 StringWriter sw = new StringWriter();
1882 print(x, sw);
1883 return sw.toString();
1884 }
1885 catch(Exception e) {
1886 throw Util.sneakyThrow(e);
1887 }
1888}
1889
1890static public Object readString(String s){
1891 return readString(s, null);

Callers 5

toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
emitValueMethod · 0.95
toStringMethod · 0.95

Calls 3

printMethod · 0.95
sneakyThrowMethod · 0.95
toStringMethod · 0.45

Tested by

no test coverage detected