My Project
include
bsl
is_movable.hpp
Go to the documentation of this file.
1
28
#ifndef BSL_IS_MOVABLE_HPP
29
#define BSL_IS_MOVABLE_HPP
30
31
#include "
bool_constant.hpp
"
32
#include "
is_move_assignable.hpp
"
33
#include "
is_move_constructible.hpp
"
34
35
namespace
bsl
36
{
48
template
<
typename
T>
49
class
is_movable
final :
50
public
bool_constant
<is_move_assignable<T>::value && is_move_constructible<T>::value>
51
{};
52
}
53
54
#endif
bsl::integral_constant
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition:
integral_constant.hpp:45
is_move_assignable.hpp
bsl::is_movable
If the provided type is move assignable and constructible, provides the member constant value equal t...
Definition:
is_movable.hpp:49
is_move_constructible.hpp
bool_constant.hpp
Generated by
1.8.15