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

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

Inherits is_copy_assignable< Bare< T > >.

Detailed Description

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

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

This means that the following code must be valid:

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

Definition at line 146 of file basic.hpp.