a loop iterating over a sequence of values
None
The starting value is incremented by one after each invocation of body.
The type of the first and last value need not be integers but can be of arbitrary types that support adding the integer value 1.
The loop terminates as soon as the current value is greater than last. (The body will only be called for values that are less than or equal to last.)
If first is greater than last then the loop body will not be called at all!
The body is called with a single argument (the current value).
To start the next iteration of the loop a tail call to the next-function has to be performed.
To exit from the loop a tail call to the break-function has to be performed or one or more results have to be returned.
std::loop | a simple "loop" |
std::while | a "while" loop |
std::while_not | a "while" loop |
std::repeat | invoke a statement sequence for a specific number of times |
std::from_to_by | a loop iterating over a sequence of values |