Return true if the specified a and b iterators are equal.
Declared in <bdlc_flathashtable.h>
template<class ENTRY>
bool
operator==(
FlatHashTable_IteratorImp<ENTRY> const& a,
FlatHashTable_IteratorImp<ENTRY> const& b);
Two FlatHashTable_IteratorImp objects are equal if they both refer to the same element of the underlying flat hash table, or are both not dereferenceable. The behavior is undefined unless a and b refer to the same FlatHashTable.
| Name | Description |
|---|---|
operator==<> | Return whether the iterators refer to the same position. |
true if the iterators are equal, and false otherwise
| Name | Description |
|---|---|
| a | first iterator to compare |
| b | second iterator to compare |