Function object that can be invoked for greater than or equal to comparisons.
More...
|
| constexpr auto | operator() (T const &lhs, T const &rhs) const noexcept(noexcept(lhs >=rhs)) -> bool |
| | Returns if the first value is greater than or equal to the second.
|
| |
template<class T = void>
class std::greater_equal< T >
Function object that can be invoked for greater than or equal to comparisons.
- Template Parameters
-
- Note
- This class contains the member types
result_type, first_argument type, and second_argument type. These aliases have been deprecated in C++17 and removed in C++20.
◆ first_argument_type
Type of the first value to compare.
◆ result_type
Result type of invoking this object.
◆ second_argument_type
Type of the second value to compare.
◆ operator()()
Returns if the first value is greater than or equal to the second.
- Parameters
-
| lhs | The first value to compare |
| rhs | The second value to compare |
- Returns
- Returns the boolean result of invoking
operator>= on lhs and rhs
The documentation for this class was generated from the following file: