[#BloombergLP-bslstl-operator_eq-09] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslstl.adoc[bslstl]::operator== :relfileprefix: ../../ :mrdocs: Return `true` if `lhs` and `rhs` have the same value. == Synopsis Declared in `<bslstl_hashtableiterator.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class VALUE_TYPE, class DIFFERENCE_TYPE> bool operator==( xref:BloombergLP/bslstl/HashTableIterator.adoc[HashTableIterator<VALUE_TYPE, DIFFERENCE_TYPE>] const& lhs, xref:BloombergLP/bslstl/HashTableIterator.adoc[HashTableIterator<VALUE_TYPE, DIFFERENCE_TYPE>] const& rhs); ---- == Description Two iterators have the same value if they refer to the same node in the same list, or if both iterators are at the past‐the‐end position of the tree. == Return Value `true` if the iterators have the same value == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | first iterator to compare | *rhs* | second iterator to compare |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#