newLISP Fan Club

Forum => newLISP in the real world => Topic started by: Sunburned Surveyor on November 30, 2005, 04:10:43 PM

Title: Breaking out of dolist...
Post by: Sunburned Surveyor on November 30, 2005, 04:10:43 PM
Is it possible to break out of a dolist loop before all of the elements in the subject list have been iterated through?



For example, I want to use dolist to manipulate each element in a list until I reach an element with a certain value. Is this possible?



What syntax would I use to break out of a dolist or other loop in NewLISP?



I checked the NewLISP manual, but I couldn't find a "break" statement that is common to other languages.



The Sunburned Surveyor
Title:
Post by: Sammo on November 30, 2005, 05:53:39 PM
See the (dotimes ...) example in the Throw section of the help file.

-- Sam