This page is for an old version of Hexaly Optimizer.
We recommend that you update your version and read the documentation for the
latest stable release.
LSPMapIterator Class¶
Summary¶
next |
Advances the iterator to the next element of the map. |
getKey |
Returns the current key in the iteration. |
getValue |
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.