FORALL
Loop:
FORALL
loop is a very simple one-line loop. The
pound sign (#
) is a special character representing the
current iteration value.
forall #=<start>:<end>;<inc> <command>
forall #=1:21;2 calc n n # +
FORALL
that can be used to
iterate over the elements of a file.
files/f t* ,,1 forall FILES status #
FORALL
is implemented via a macro it has a
number of unusual restrictions related to result translation and
which commands can be called.
FORALL
explain file for details.FORALL
is the least-frequently-used loop in NeXtMidas.
This is primarially because DO
and FOREACH
are more flexible and provide similar functionality.X-Midas Users Take Note: |
---|
![]() FORALL via a macro and
has similar restrictions on how it can be used.
|