Return true if lhs and rhs do not have the same value.
Declared in <bslstl_hashtableiterator.h>
template<
class VALUE_TYPE,
class DIFFERENCE_TYPE>
bool
operator!=(
HashTableIterator<VALUE_TYPE, DIFFERENCE_TYPE> const& lhs,
HashTableIterator<VALUE_TYPE, DIFFERENCE_TYPE> const& rhs);
Two iterators do not have the same value if they refer to different nodes in the same list, or if either (but not both) of the iterators are at the past-the-end position of the tree.
true if the iterators do not have the same value
| Name | Description |
|---|---|
| lhs | first iterator to compare |
| rhs | second iterator to compare |