sgs_IterAdvance [functions]
SGSBOOL sgs_IterAdvance( sgs_Context* C, sgs_Variable var )
Advance the iterator to the next position, returning if the current position is still in range.
- This is the way it's expected to be usually called:
while( sgs_IterAdvance( C, var ) ){ ... sgs_IterPushData ... }
. - See Iterator system for more info about iterators.