| 2146 | #else |
| 2147 | template<class T, class U> |
| 2148 | detail::string_comp_op_requirement<T, U> |
| 2149 | operator<=(T const& lhs, U const& rhs) noexcept |
| 2150 | #endif |
| 2151 | { |
| 2152 | return detail::to_string_view(lhs) <= detail::to_string_view(rhs); |
| 2153 | } |
| 2154 | |
| 2155 | /** Check if lhs is more than or equal to rhs. |
| 2156 |
nothing calls this directly
no test coverage detected