My Project
Loading...
Searching...
No Matches
IterableIntMap< GR, K >::ItemIt Class Reference

Detailed Description

template<typename GR, typename K>
class lemon::IterableIntMap< GR, K >::ItemIt

Iterator for the keys with the same value. It works like a graph item iterator, it can be converted to the item type of the map, incremented with ++ operator, and if the iterator leaves the last valid item, it will be equal to INVALID.

#include <lemon/maps.h>

Public Member Functions

 ItemIt (Invalid)
 Invalid constructor & conversion.
 
 ItemIt (const IterableIntMap &map, int value)
 Creates an iterator with a value.
 
ItemItoperator++ ()
 Increment operator.
 

Constructor & Destructor Documentation

◆ ItemIt() [1/2]

template<typename GR , typename K >
ItemIt ( Invalid )
inline

This constructor initializes the iterator to be invalid.

See also
Invalid for more details.

◆ ItemIt() [2/2]

template<typename GR , typename K >
ItemIt ( const IterableIntMap & map,
int value )
inline

Creates an iterator with a value. It iterates on the keys mapped to the given value.

Parameters
mapThe IterableIntMap.
valueThe value.

Member Function Documentation

◆ operator++()

template<typename GR , typename K >
ItemIt & operator++ ( )
inline

Increment operator.