Function template ge_fields
pfr::ge_fields
Synopsis
template<typename T, typename U>
constexpr bool ge_fields(const T & lhs, const U & rhs);
Description
Does a field-by-field greater equal comparison.
Returns: |
L > R || (L == R && tuple_size_v<T> >= tuple_size_v<U>), where L and R are the results of calling std::tie on first N fields of lhs and
|