Returns true if the first argument is greater than or equal to the second argument.
template <class T> struct greater_equal :
binary_function<T,T,bool>
{
bool operator()(const T& x, const T& y) const;
};
Returns true if x is greater than or equal to y.