(conj!)
(conj! coll)
(conj! coll x)
Adds x to the transient collection, and return coll. The 'addition'
may happen at different 'places' depending on the concrete type.
Source
(defn conj!
"Adds x to the transient collection, and return coll. The 'addition'
may happen at different 'places' depending on the concrete type."
{:added "1.1"
:static true}
([] (transient []))
([coll] coll)
([^clojure.lang.ITransientCollection coll x]
(.conj coll x)))