| 2102 | #else |
| 2103 | template<class T, class U> |
| 2104 | detail::string_comp_op_requirement<T, U> |
| 2105 | operator!=(T const& lhs, U const& rhs) noexcept |
| 2106 | #endif |
| 2107 | { |
| 2108 | return detail::to_string_view(lhs) != detail::to_string_view(rhs); |
| 2109 | } |
| 2110 | |
| 2111 | /** Check if lhs is less than rhs. |
| 2112 |
nothing calls this directly
no test coverage detected