Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template negate

boost::movelib::negate

Synopsis

// In header: <boost/move/algo/predicate.hpp>

template<typename Comp> 
class negate {
public:
  // construct/copy/destruct
  negate();
  explicit negate(Comp);

  // public member functions
  template<typename T1, typename T2> bool operator()(const T1 &, const T2 &);
};

Description

negate public construct/copy/destruct

  1. negate();
  2. explicit negate(Comp comp);

negate public member functions

  1. template<typename T1, typename T2> bool operator()(const T1 & l, const T2 & r);

PrevUpHomeNext