All Classes Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
gears::concepts::CopyConstructible< T > Struct Template Reference

Checks if a type is copy constructible. More...

Inherits is_copy_constructible< Bare< T > >.

Detailed Description

template<typename T>
struct gears::concepts::CopyConstructible< T >

A Unary concept to check if a type is copy constructible.

This means that the following code must be valid:

// other_var is of type T
T var(other_var); // copy constructor
Template Parameters
TType to check

Definition at line 110 of file basic.hpp.