The from where phrase specifies the initial value of the clause’s variable. It consists of one of the prepositions from
, downfrom
, or upfrom
followed by a form, which supplies the initial value (a number).
The to where phrase specifies a stopping point for the loop and consists of one of the prepositions to
, upto
, below
, downto
, or followed by a form, which supplies the stopping point. With upto
and downto
, the loop body will be terminated (without executing the body again) when the variable passes the stopping point; with below
and above
, it stops one iteration earlier.The by how much phrase consists of the prepositions by
and a form, which must evaluate to a positive number. The variable will be stepped (up or down, as determined by the other phrases) by this amount on each iteration or by one if it’s omitted.
You must specify at least one of these prepositional phrases. The defaults are to start at zero, increment the variable by one at each iteration, and go forever or, more likely, until some other clause terminates the loop. You can modify any or all of these defaults by adding the appropriate prepositional phrases. The only wrinkle is that if you want decremental stepping, there’s no default from where value, so you must specify one with either from
or downfrom
. So, the following:
(loop for i downto -10 collect i) ; wrong
is undefined. Instead, you need to write this:
Also note that because **LOOP**
is a macro, which runs at compile time, it has to be able to determine the direction to step the variable based solely on the prepositions—not the values of the forms, which may not be known until runtime. So, the following:
works fine since the default is incremental stepping. But this:
(loop for i from 20 to 10 ...)
or this:
Finally, if you just want a loop that repeats a certain number of times, you can replace a clause of the following form:
for i from 1 to number-form
with a repeat
clause like this: