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