Function: -reductions-r-from
-reductions-r-from is a byte-compiled function defined in dash.el.
Signature
(-reductions-r-from FN INIT LIST)
Documentation
Return a list of FN's intermediate reductions across reversed LIST.
That is, a list of the intermediate values of the accumulator
when -reduce-r-from (which see) is called with the same
arguments.
This function's anaphoric counterpart is --reductions-r-from.
For other folds, see also -reductions and -reductions-r.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -reductions-r-from (fn init list)
"Return a list of FN's intermediate reductions across reversed LIST.
That is, a list of the intermediate values of the accumulator
when `-reduce-r-from' (which see) is called with the same
arguments.
This function's anaphoric counterpart is `--reductions-r-from'.
For other folds, see also `-reductions' and `-reductions-r'."
(declare (important-return-value t))
(--reductions-r-from (funcall fn it acc) init list))