cl-dolist

cl-dolist is an autoloaded Lisp macro in `cl-macs.el'.

(cl-dolist (VAR LIST [RESULT]) BODY...)

Loop over a list.
Evaluate BODY with VAR bound to each `car' from LIST, in turn.
Then evaluate RESULT to get return value, default nil.
An implicit nil block is established around the loop.