Function: -find-indices
-find-indices is a byte-compiled function defined in dash.el.
Signature
(-find-indices PRED LIST)
Documentation
Return the list of indices in LIST satisfying PRED.
Each element of LIST in turn is passed to PRED. If the result is non-nil, the index of that element in LIST is included in the result. The returned indices are in ascending order, i.e., in the same order as they appear in LIST.
This function's anaphoric counterpart is --find-indices.
See also: -find-index, -elem-indices.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -find-indices (pred list)
"Return the list of indices in LIST satisfying PRED.
Each element of LIST in turn is passed to PRED. If the result is
non-nil, the index of that element in LIST is included in the
result. The returned indices are in ascending order, i.e., in
the same order as they appear in LIST.
This function's anaphoric counterpart is `--find-indices'.
See also: `-find-index', `-elem-indices'."
(declare (important-return-value t))
(--find-indices (funcall pred it) list))