iter_advance [function]
iter_advance( iterator var )
advances an iterator to the next position, returning if there is any more data to read
- More info about iterators: Iterator system
it = get_iterator( [ 5 ] ); // retrieves iterator from array [5] iter_advance( it ); // returns true, indicating that the current position is still a valid one