[#bsl-operator_eq-08a] = xref:bsl.adoc[bsl]::operator== :relfileprefix: ../ :mrdocs: Return `true` if `lhs` and `rhs` have the same value. == Synopsis Declared in `<bslstl_unorderedmultimap.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class KEY, class VALUE, class HASH, class EQUAL, class ALLOCATOR> bool operator==( xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE, HASH, EQUAL, ALLOCATOR>] const& lhs, xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE, HASH, EQUAL, ALLOCATOR>] const& rhs); ---- == Description Return `true` if the specified `lhs` and `rhs` objects have the same value, and `false` otherwise. Two `unordered_multimap` objects have the same value if they have the same number of key‐value pairs, and each key‐value pair that is contained in one of the objects is also contained in the other object. This method requires that the (template parameter) types `KEY` and `VALUE` both be `equality‐comparable` (see {Requirements on `KEY` and `VALUE`}). == Return Value `true` if the unordered multimaps compare equal == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand unordered multimap to compare | *rhs* | right‐hand unordered multimap to compare |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#