operator==,!=(std::unordered_multimap)
Min standard notice:
Compares the contents of two unordered containers.
# Declarations
template< class Key, class T, class Hash, class KeyEqual, class Alloc >
bool operator==( const std::unordered_multimap<Key, T, Hash, KeyEqual, Alloc>& lhs,
const std::unordered_multimap<Key, T, Hash, KeyEqual, Alloc>& rhs );
template< class Key, class T, class Hash, class KeyEqual, class Alloc >
bool operator!=( const std::unordered_multimap<Key, T, Hash, KeyEqual, Alloc>& lhs,
const std::unordered_multimap<Key, T, Hash, KeyEqual, Alloc>& rhs );
(until C++20)
# Parameters
lhs, rhs: unordered containers to compare