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

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Struct template copy_constructible

boost::type_erasure::copy_constructible

Synopsis

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

template<typename T = _self> 
struct copy_constructible : public boost::mpl::vector< constructible< T(const T &)>, destructible< T > >
{
};

Description

The copy_constructible concept allows objects to be copied and destroyed.

[Note] Note

This concept is defined to match C++ 2003, [lib.copyconstructible]. It is not equivalent to the concept of the same name in C++11.


PrevUpHomeNext