dolist-like MacrosThe following macros are analogous to dolist and
dotimes, but for the conses of lists, alists, plists and vectors.
There's also dotimes*, which is just like dotimes but
without an iteration variable. This relieves you from naming it when
you don't need it anyway and makes it clear that you won't.
| PKG | Values mapped over | name
|
|---|---|---|
| cl | elements of a list | dolist
|
| cl | integers from 0 below max | dotimes
|
| ll | conses of a list | docons
|
| ll | (key . value)s of an alist | doalist
|
| ll | (key value)s of an alist | doalist*
|
| ll | (key value)s of a plist | doplist
|
| ll | elements of a vector | dovector
|
| ll | As dotimes, but no iter var | dotimes*
|