Returns a new seq where x is the first element and seq is
the rest.
(def
^{:arglists '([x seq])
:doc "Returns a new seq where x is the first element and seq is
the rest."
:added "1.0"}
cons (fn* cons [x seq] (. clojure.lang.RT (cons x seq))))
Comments top
No comments for cons. Log in to add a comment.