| 2124 | #else |
| 2125 | template<class T, class U> |
| 2126 | detail::string_comp_op_requirement<T, U> |
| 2127 | operator<(T const& lhs, U const& rhs) noexcept |
| 2128 | #endif |
| 2129 | { |
| 2130 | return detail::to_string_view(lhs) < detail::to_string_view(rhs); |
| 2131 | } |
| 2132 | |
| 2133 | /** Check if lhs is less than or equal to rhs. |
| 2134 |
nothing calls this directly
no test coverage detected