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

Method formatAesthetic

src/jvm/clojure/lang/RT.java:2063–2068  ·  view source on GitHub ↗
(Writer w, Object obj)

Source from the content-addressed store, hash-verified

2061}
2062
2063static public void formatAesthetic(Writer w, Object obj) throws IOException{
2064 if(obj == null)
2065 w.write("null");
2066 else
2067 w.write(obj.toString());
2068}
2069
2070static public void formatStandard(Writer w, Object obj) throws IOException{
2071 if(obj == null)

Callers 1

doFormatMethod · 0.95

Calls 2

writeMethod · 0.80
toStringMethod · 0.45

Tested by

no test coverage detected