Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template antistable

boost::movelib::antistable

Synopsis

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

template<typename Comp> 
struct antistable {

  // public member functions
  antistable();
  explicit antistable(Comp);
  template<typename U, typename V> bool operator()(const U &, const V &);
  const Comp & get() const;
};

Description

antistable public member functions

  1. antistable();
  2. explicit antistable(Comp comp);
  3. template<typename U, typename V> bool operator()(const U & u, const V & v);
  4. const Comp & get() const;

PrevUpHomeNext