template<class T, class H = RWTHash<T>, class EQ = std::equal_to<T>, class A = std::allocator<T*>>
class RWTPtrHashSetConstIterator< T, H, EQ, A >
- Deprecated
- As of SourcePro 12.5, use RWTPtrHashSet::const_iterator to iterate over the elements in this collection.
RWTPtrHashSetConstIterator provides a const
iterator interface to C++ Standard Library-based RWTPtrHashSet collections.
Iteration over an RWTPtrHashSet is pseudorandom and dependent on the capacity of the underlying hash table and the hash function being used.
The current item referenced by this iterator is undefined after construction or after a call to reset(). The iterator becomes valid after being advanced with either a pre-increment or an operator()().
For both operator++() and operator()(), iterating past the last element returns a value equivalent to boolean false
. Continued increments return a value equivalent to false
until reset() is called.
The value
type must have operator==
defined. This requirement is imposed by the C++ Standard Library.
- Synopsis
#include <rw/tphset.h>
template <class T, class H, class EQ, class A = std::allocator<T*> >
Deprecated. Provides a const iterator for RWTPtrHashSet.
Definition tphset.h:1096
- Persistence
- None
template<class T , class H = RWTHash<T>, class EQ = std::equal_to<T>, class A = std::allocator<T*>>
Advances self to the next element. If the iterator has just been reset or created, self now references the first element. If, before iteration, self referenced the last association in the multi-map, self now points to an undefined value and a value equivalent to false
is returned. Otherwise, a value equivalent to true
is returned.