doalist
Iterates over the key value pairs of an alist.
dohash
Iterates over the key value pairs of a hash table.
(dohash (key value hash-table &optional return-form)
(format t "key: ~A, value: ~A~%" key value))
dolist*
Iterates over a list with a position variable tracking the current index.
(dolist* (position value list &optional return-form)
(format t "position: ~A, value: ~A~%" position value))
doplist
Iterates over the key value pairs of an plist.
doseq
Iterates over the values of a sequence.
doseq*
Iterates over a sequence with a position variable tracking the current index.
(doseq* (position value sequence &optional return-form)
(format t "position: ~A, value: ~A~%" position value))
Obtaining
Repository: https://github.com/yitzchak/trivial-do/
Author: Tarn W. Burton
trivial, MIT-LICENSE