pr-sequential

functionremoved v0.0-1798added v0.0-927Edit
(pr-sequential print-one begin sep end opts coll)

Source docstring:
Do not use this.  It is kept for backwards compatibility with the
old IPrintable protocol.
Source code @ clojurescript:src/cljs/cljs/core.cljs
(defn ^:deprecated pr-sequential
  [print-one begin sep end opts coll]
  (concat [begin]
          (flatten1
            (interpose [sep] (map #(print-one % opts) coll)))
          [end]))