seq-doseq
seq-doseq is a Lisp macro in `seq.el
'.
(seq-doseq (VAR SEQ [RESULT]) BODY...)
Loop over a sequence.
Similar to `dolist' but can be applied lists, strings and vectors.
Evaluate BODY with VAR bound to each element of SEQ, in turn.
Then evaluate RESULT to get return value, default nil.