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

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

Inherits is_move_constructible< Bare< T > >.

Detailed Description

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

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

This means that the following code must be valid:

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

Definition at line 92 of file basic.hpp.