tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
is_nothrow_move_assignable.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_TYPE_TRAITS_IS_NOTHROW_MOVE_ASSIGNABLE_HPP
4#define TETL_TYPE_TRAITS_IS_NOTHROW_MOVE_ASSIGNABLE_HPP
5
9
10namespace etl {
11
24template <typename T>
25struct is_nothrow_move_assignable : is_nothrow_assignable<add_lvalue_reference_t<T>, add_rvalue_reference_t<T>> { };
26
27template <typename T>
29
30} // namespace etl
31
32#endif // TETL_TYPE_TRAITS_IS_NOTHROW_MOVE_ASSIGNABLE_HPP
Definition adjacent_find.hpp:8
constexpr bool is_nothrow_move_assignable_v
Definition is_nothrow_move_assignable.hpp:28
static constexpr bool value
Definition integral_constant.hpp:10
If the expression etl::declval<T>() = etl::declval<U>() is well-formed in unevaluated context,...
Definition is_nothrow_assignable.hpp:17
If T is not a referenceable type (i.e., possibly cv-qualified void or a function type with a cv-quali...
Definition is_nothrow_move_assignable.hpp:25