![]() |
Elm
2
ELM is a library providing generic data structures, OS-independent interface, plugins and XML.
|
#include <elm/data/HashMap.h>
Inheritance diagram for HashMap< K, T, H, A, E >::PairIter:Public Member Functions | |
| PairIter (const self_t &htab) | |
| PairIter (const self_t &htab, bool end) | |
| bool | ended (void) const |
| const Pair< K, T > & | item (void) const |
| void | next (void) |
| bool | equals (const PairIter &it) const |
Public Member Functions inherited from InplacePreIterator< PairIter, Pair< K, T > > | |
| bool | operator() () const |
| bool | operator! () const |
| const Pair< K, T > & | operator* () const |
| const Pair< K, T > & | operator-> () const |
| PairIter & | operator++ () |
| void | operator++ (int) |
| bool | operator== (const PairIter &i) const |
| bool | operator!= (const PairIter &i) const |
Additional Inherited Members | |
Public Types inherited from InplacePreIterator< PairIter, Pair< K, T > > | |
| typedef Pair< K, T > | t |
| typedef const Pair< K, T > & | return_t |
Iterator on the pairs formed of(key, value) of each item of the map.
References HashTable< T, H, A >::Iter::item().