Loops are used for repeated processing of program parts until a cancellation condition is reached.
TCE supports the following constructs:
Simple For loop with upward-counting running variable
Simple For loop with downward-counting running variable
For loop with defined increment of the upward-counting running variable
For loop with defined increment of the downward counting running variable
For loop to traverse only filled list indexes or entries from collections
Do-While loop with condition on the loop head
Do-Until loop with condition on the loop head
Do-While loop with condition at the end of the loop