Yoba Perl
HashIterator

Hash iterator. More...

Public Member Functions

 HashIterator (HashIterator &&to_move)
 Move constructor.
 
Operators
HashEntry operator* () const
 
HashIteratoroperator++ ()
 
HashIterator operator++ (int)
 
HashIteratoroperator+= (SSize_t diff)
 
bool operator== (const HashIterator &other) const
 
bool operator!= (const HashIterator &other) const
 
 operator bool () const
 

Detailed Description

Hash iterator.

Example
for(Hash::Iterator it = hash.begin(); it != hash.end(); ++it) {
std::cout << *x << std::endl;
std::cout << (*x).getKey() << " => " << (*x).getValue() << std::endl;
}
for(HashEntry x : hash)
std::cout << x << std::endl;

Definition at line 26 of file hash_iterator.hpp.


The documentation for this class was generated from the following files: