user=> (reverse '(1 2 3)) (3 2 1)
Returns, in constant time, a seq of the items in rev (which can be
(defn reverse "Returns a seq of the items in coll in reverse order. Not lazy." {:added "1.0" :static true} [coll] (reduce1 conj () coll))
Comments top
No comments for reverse. Log in to add a comment.