pr-str*

functionsince v0.0-1806Edit
(pr-str* obj)

Source docstring:
Support so that collections can implement toString without
loading all the printing machinery.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn pr-str*
  [^not-native obj]
  (let [sb (StringBuffer.)
        writer (StringBufferWriter. sb)]
    (-pr-writer obj writer (pr-opts))
    (-flush writer)
    (str sb)))