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 add_assignable

boost::type_erasure::add_assignable

Synopsis

// In header: <boost/type_erasure/operators.hpp>

template<typename T = _self, typename U = T> 
struct add_assignable {

  // public static functions
  static void apply(T &, const U &);
};

Description

add_assignable public static functions

  1. static void apply(T &, const U &);

PrevUpHomeNext