[#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 whether two `HashTableAnchor` objects have the same value. [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 `lhs` and `rhs` point to the same element. [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 `lhs` and `rhs` point 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..._]# == Return Value * `true` if `lhs` and `rhs` have the same value, and `false` otherwise * `true` if the buckets are equivalent, and `false` otherwise * `true` if both iterators point to the same element, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand operand | *rhs* | right‐hand operand |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#