IWriter

protocolsince v0.0-1503Edit
implemented for StringBufferWriter

Source docstring:
Protocol for writing. Currently only implemented by StringBufferWriter.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defprotocol IWriter
  (-write [writer s]
    "Writes s with writer and returns the result.")
  (-flush [writer]
    "Flush writer."))