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

Method printInnerSeq

src/jvm/clojure/lang/RT.java:2055–2061  ·  view source on GitHub ↗
(ISeq x, Writer w)

Source from the content-addressed store, hash-verified

2053}
2054
2055private static void printInnerSeq(ISeq x, Writer w) throws IOException{
2056 for(ISeq s = x; s != null; s = s.next()) {
2057 print(s.first(), w);
2058 if(s.next() != null)
2059 w.write(' ');
2060 }
2061}
2062
2063static public void formatAesthetic(Writer w, Object obj) throws IOException{
2064 if(obj == null)

Callers 1

printMethod · 0.95

Calls 4

nextMethod · 0.95
printMethod · 0.95
firstMethod · 0.95
writeMethod · 0.80

Tested by

no test coverage detected