std::greater_equal

Header: <functional>

Function object for performing comparisons. The main template invokes operator>= on type T.

# Declarations

template< class T >
struct greater_equal;

(until C++14)

template< class T = void >
struct greater_equal;

(since C++14)

# Parameters

# Return value

lhs >= rhs.

# Defect reports

DRApplied toBehavior as publishedCorrect behavior
LWG 2562C++98the pointer total order might be inconsistentguaranteed to be consistent

# See also