tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
is_move_constructible.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_TYPE_TRAITS_IS_MOVE_CONSTRUCTIBLE_HPP
4#define TETL_TYPE_TRAITS_IS_MOVE_CONSTRUCTIBLE_HPP
5
9
10namespace etl {
11
16template <typename T>
17struct is_move_constructible : is_constructible<T, add_rvalue_reference_t<T>> { };
18
19template <typename T>
21
22} // namespace etl
23
24#endif // TETL_TYPE_TRAITS_IS_MOVE_CONSTRUCTIBLE_HPP
Definition adjacent_find.hpp:8
constexpr bool is_move_constructible_v
Definition is_move_constructible.hpp:20
detail::is_constructible_helper< void_t<>, T, Args... > is_constructible
Definition is_constructible.hpp:21
static constexpr bool value
Definition integral_constant.hpp:10
If T is not a referenceable type (i.e., possibly cv-qualified void or a function type with a cv-quali...
Definition is_move_constructible.hpp:17