Member predicate ForStmt::getInitializer
Gets the nth initializer expression of this for loop
(starting at index 0).
For example, the second (n = 1) initializer is j = 10 in
for (int i = 0, j = 10; i < j; i++) {
...
}
Gets the nth initializer expression of this for loop
(starting at index 0).
For example, the second (n = 1) initializer is j = 10 in
for (int i = 0, j = 10; i < j; i++) {
...
}