not_equal_to

Returns true if the first argument is not equal to the second argument.

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

Returns true if x is not equal to y.