reverse

functionsince v0.0-927 clojure.core/reverseEdit
(reverse coll)

Details:

Returns a sequence of the items in coll in reverse order. Not lazy.


See Also:


Source docstring:
Returns a seq of the items in coll in reverse order. Not lazy.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn reverse
  [coll]
  (if (reversible? coll)
    (or (rseq coll) ())
    (reduce conj () coll)))