dotimes

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

(dotimes (VAR COUNT [RESULT]) BODY...)

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

Loop a certain number of times.
Evaluate BODY with VAR bound to successive integers running from 0,
inclusive, to COUNT, exclusive. Then evaluate RESULT to get
the return value (nil if RESULT is omitted).