std::locale::operator==, operator!=
Min standard notice:
Tests two locales for equality. Named locales are considered equal if their names are equal. Unnamed locales are considered equal if they are copies of each other.
# Declarations
bool operator==( const locale& other ) const;
bool operator!=( const locale& other ) const;
(until C++20)
# Parameters
other: a std::locale object to compare
# Example
This section is incompleteReason: no example