[#BloombergLP-bslalg-operator_eq-0b] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslalg.adoc[bslalg]::operator== :relfileprefix: ../../ :mrdocs: Equality operators == Synopses Declared in `<bslalg_hashtableanchor.h>` Return `true` if the specified `lhs` and `rhs` objects have the same value, and `false` otherwise. Two `bslalg::HashTableAnchor` objects have the same value if all of the corresponding values of their `bucketArrayAddress`, `bucketArraySize`, and `listRootAddress` attributes are the same. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bslalg/operator_eq-0e3.adoc[operator==]( xref:BloombergLP/bslalg/HashTableAnchor.adoc[HashTableAnchor] const& lhs, xref:BloombergLP/bslalg/HashTableAnchor.adoc[HashTableAnchor] const& rhs); ---- [.small]#xref:BloombergLP/bslalg/operator_eq-0e3.adoc[_» more..._]# Return `true` if the specified hash table buckets `lhs` and `rhs` are equivalent and `false` otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bslalg/operator_eq-0ed.adoc[operator==]( xref:BloombergLP/bslalg/HashTableBucket.adoc[HashTableBucket] const& lhs, xref:BloombergLP/bslalg/HashTableBucket.adoc[HashTableBucket] const& rhs); ---- [.small]#xref:BloombergLP/bslalg/operator_eq-0ed.adoc[_» more..._]# Return `true` if the specified `lhs` iterator points to the same element in the same block as the specified `rhs` iterator, and `false` otherwise. The behavior is undefined unless `lhs` and `rhs` are iterators over the same deque. Note that this friend is a regular functon, not a function template, so there is no way to declare it outside the class in order to provide the definition. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bslalg/operator_eq-02.adoc[operator==]( xref:BloombergLP/bslalg/DequeIterator-0d.adoc[DequeIterator] const& lhs, xref:BloombergLP/bslalg/DequeIterator-0d.adoc[DequeIterator] const& rhs); ---- [.small]#xref:BloombergLP/bslalg/operator_eq-02.adoc[_» more..._]# Return `true` if the specified `lhs` and `rhs` iterators refer to the same element. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bslalg/operator_eq-0c.adoc[operator==]( xref:BloombergLP/bslalg/DequeIterator-01.adoc[DequeIterator] const& lhs, xref:BloombergLP/bslalg/DequeIterator-01.adoc[DequeIterator] const& rhs); ---- [.small]#xref:BloombergLP/bslalg/operator_eq-0c.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#