LSPMapIterator Class¶
Summary¶
Advances the iterator to the next element of the map. |
|
Returns the current key in the iteration. |
|
Returns the current value in the iteration. |
Functions¶
-
bool LSPMapIterator::next()¶
Advances the iterator to the next element of the map. Returns true if the iterator was successfully advanced and false if the iterator has passed the end of the map.
-
LSPValue LSPMapIterator::getKey() const¶
Returns the current key in the iteration. This method returns nil if the iterator is positionned before the first element in the map.
next()
must be called to advance the iterator to the first element of the map before calling this method.
-
LSPValue LSPMapIterator::getValue() const¶
Returns the current value in the iteration. This method returns nil if the iterator is positionned before the first element in the map.
next()
must be called to advance the iterator to the first element of the map before calling this method.