| 1719 | |
| 1720 | template<class Char, class Traits, class Allocator> |
| 1721 | bool operator==(const basic_string<Char, Traits, Allocator>& lhs, |
| 1722 | const basic_string<Char, Traits, Allocator>& rhs) noexcept |
| 1723 | { |
| 1724 | return lhs.compare(rhs) == 0; |
| 1725 | } |
| 1726 | |
| 1727 | template<class Char, class Traits, class Allocator> |
| 1728 | bool operator==(const Char* lhs, |