next
method and it needs to throw a goog.iter.StopIteration when the
iteration passes beyond the end. Iterators have no hasNext method.
It is recommended to always use the helper functions to iterate over the
iterator or in case you are only targeting JavaScript 1.7 for in loops.
| goog.iter.Iterator |
|
Returns the
Iterator object itself. This is used to implement
the iterator protocol in JavaScript 1.7
Arguments:
Returns:
The object itself.
|
code » | ||
next()
⇒ *
Returns the next value of the iteration. This will throw the object
goog.iter#StopIteration when the iteration passes the end.
Returns:
*
Any object or value.
|
code » |