dolist

dolist is a Lisp macro in `subr.el'.

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

:around advice: `cl--wrap-in-nil-block'

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.