std::locale::operator==, operator!=

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

# Example

This section is incompleteReason: no example

# See also