| 2168 | #else |
| 2169 | template<class T, class U> |
| 2170 | detail::string_comp_op_requirement<T, U> |
| 2171 | operator>=(T const& lhs, U const& rhs) noexcept |
| 2172 | #endif |
| 2173 | { |
| 2174 | return detail::to_string_view(lhs) >= detail::to_string_view(rhs); |
| 2175 | } |
| 2176 | |
| 2177 | /** Check if lhs is greater than rhs. |
| 2178 |
nothing calls this directly
no test coverage detected