Function: f--entries
f--entries is a macro defined in f.el.
Signature
(f--entries PATH BODY &optional RECURSIVE)
Documentation
Anaphoric version of f-entries.
Source Code
;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defmacro f--entries (path body &optional recursive)
"Anaphoric version of `f-entries'."
`(f-entries
,path
(lambda (path)
(let ((it path))
,body))
,recursive))