| function | since v1.12.134 | Edit |
(vector-lite & args):lite-mode version of vector, not intended to be used directly.
(defn vector-lite
[& args]
(if (and (instance? IndexedSeq args) (zero? (.-i args)))
(.fromArray VectorLite (aclone (.-arr args)))
(VectorLite. nil (into-array args) nil)))