greater

Returns true if the first argument is greater than the second argument.

  template <class T> struct greater : binary_function<T,T,bool> 
  {
     bool operator()(const T& x, const T& y) const;
  }; 
Remarks

Returns true if x is greater than y.