return
Return from a block named nil
do and other do<something> iterators create a block named nil around the code body
(defun try (item)
(dolist (object *objects*)
(when (matchp item object)
;; Return from the dolist:
(return object))))
Previous slide
Next slide
Back to first slide
View graphic version