-
Notifications
You must be signed in to change notification settings - Fork 1
ArrayIter
Matt Fichman edited this page Dec 20, 2012
·
8 revisions
This iterator returns each of the elements in the array it points to in sequence. The iterator makes no guarantee on ordering if the array is modified during iteration, but the iteration is guaranteed to terminate and will not result in a fault.
Initializes the iterator. The iterator will iterate over the items in 'coll'.
Returns true if there are more elements in the array.
Returns the next element in the array, or nil if there are no more elements.
@destroy()
No comment