logical_or

Returns true if the first or the second argument are true.

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

Returns true if the x or y are true.