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

Checks if a type has copy assignment and constructor. More...

Inherits gears::concepts::And< Args >.

Detailed Description

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

A Unary concept to check if a type has a copy assignment and a copy constructor.

This means that the following code must be valid:

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

Definition at line 184 of file basic.hpp.