| 2078 | #else |
| 2079 | template<class T, class U> |
| 2080 | detail::string_comp_op_requirement<T, U> |
| 2081 | operator==(T const& lhs, U const& rhs) noexcept |
| 2082 | #endif |
| 2083 | { |
| 2084 | return detail::to_string_view(lhs) == detail::to_string_view(rhs); |
| 2085 | } |
| 2086 | |
| 2087 | /** Checks if lhs does not equal rhs. |
| 2088 |
nothing calls this directly
no test coverage detected