Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Struct template antistable

boost::movelib::antistable

Synopsis

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

template<typename Comp> 
struct antistable {

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

  // private member functions
  antistable & operator=(const antistable &);
};

Description

antistable public member functions

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

antistable private member functions

  1. antistable & operator=(const antistable &);

PrevUpHomeNext