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

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

Inherits is_move_assignable< Bare< T > >.

Detailed Description

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

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

This means that the following code must be valid:

// other_var is of type T
T var = std::move(other_var); // move assignment
Template Parameters
TType to check

Definition at line 128 of file basic.hpp.