| Allegro CL version 10.0 Unrevised from 9.0 to 10.0. 9.0 version |
Arguments: condition &rest forms
Evaluates forms repeatedly until
condition (which should be a Lisp form) evaluates
to nil
.
The definition of while is
(defmacro while (condition &rest forms) `(loop (unless ,condition (return)) ,@forms))
Note that loop
surrounds its body with a block named nil
(as used by the return form which is the consequent of
the unless form). This
macro returns nil
.
See also until.
Copyright (c) 1998-2019, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 9.0 page.
Created 2015.5.21.
| Allegro CL version 10.0 Unrevised from 9.0 to 10.0. 9.0 version |