Function: --reduce-r

--reduce-r is a macro defined in dash.el.

Signature

(--reduce-r FORM LIST)

Documentation

Accumulate a value by evaluating FORM across LIST in reverse order.

This macro is like --reduce, except it starts from the end of LIST. This is the anaphoric counterpart to -reduce-r.

Source Code

;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defmacro --reduce-r (form list)
  "Accumulate a value by evaluating FORM across LIST in reverse order.
This macro is like `--reduce', except it starts from the end of
LIST.
This is the anaphoric counterpart to `-reduce-r'."
  (declare (debug (form form)))
  `(--reduce ,form (reverse ,list)))