rseq

functionsince v0.0-1211 clojure.core/rseqEdit
(rseq rev)

Details:

Returns a sequence of the items in coll in reverse order in constant time.

Returns nil if coll is empty.

coll must be a vector or a sorted-map.


See Also:


Source docstring:
Returns, in constant time, a seq of the items in rev (which
can be a vector or sorted-map), in reverse order. If rev is empty returns nil
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn ^seq rseq
  [rev]
  (-rseq rev))