No, LOOP does not provide such a function directly. If your LOOP implementation is extensible (as the standard says nothing about), you may be able to implement such a function.
LOOP has suggestions for iterating over lists - for item in list - and a suggestion for iterating over a vector - for e across vector - note that strings are also vectors, one-dimensional arrays. But not both together.
Otherwise, use MAP or MAP-INTO to loop through the sequences.
The ITERATE macro provides this function: for i in-sequence seq .
Rainer joswig
source share