Return true if the specified a and b iterators are equal.
Synopsis
Declared in <bdlc_flathashtable.h>
template<class ENTRY>
bool
operator==(
FlatHashTable_IteratorImp<ENTRY> const& a,
FlatHashTable_IteratorImp<ENTRY> const& b);
Description
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.
Specializations
Name |
Description |
Return whether the iterators refer to the same position. |
Return Value
true if the iterators are equal, and false otherwise
Parameters
Name |
Description |
a |
first iterator to compare |
b |
second iterator to compare |
Created with MrDocs