Creates the specified number of custom elements and returns them as an enumeration. Each element is assigned with the value equal to its index in the enumeration.
In effect, this function wraps a sequence of integers from 0
to n-1
into custom elements, which you can iterate using Element Iterator.
The current integer value can be accessed within the Element Iterator using the expression:
(Integer) contextElement.value
Parameter:
n
The negative value is interpreted as 0.
CustomElement()