ITransientCollection

protocolsince v0.0-1211 clojure.lang/ITransientCollectionEdit
implemented for TransientArrayMap TransientHashMap TransientHashSet TransientVector

Source docstring:
Protocol for adding basic functionality to transient collections.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defprotocol ITransientCollection
  (^clj -conj! [tcoll val]
    "Adds value val to tcoll and returns tcoll.")
  (^clj -persistent! [tcoll]
    "Creates a persistent data structure from tcoll and returns it."))