pr-with-opts

functionremoved v0.0-1503added v0.0-927Edit
(pr-with-opts objs opts)

Source docstring:
Prints a sequence of objects using string-print, observing all
the options given in opts
Source code @ clojurescript:src/cljs/cljs/core.cljs
(defn pr-with-opts
  [objs opts]
  (doseq [string (pr-seq (first objs) opts)]
    (string-print string))
  (doseq [obj (next objs)]
    (string-print " ")
    (doseq [string (pr-seq obj opts)]
      (string-print string))))