Access the loop iterator value
Access the iterator value when a list is printed into a document.
Example
In {d[i].cars[i].other.wheels[i].tire.subObject:add(.i):add(..i):add(...i)}
The number of dots equals the number of previous i
:
.i
matches the index value ofwheels[i]
..i
matches the index value ofcars[i]
...i
matches the index value ofd[i]
Last updated