tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
is_trivially_move_assignable.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_TYPE_TRAITS_IS_TRIVIALLY_MOVE_ASSIGNABLE_HPP
4#define TETL_TYPE_TRAITS_IS_TRIVIALLY_MOVE_ASSIGNABLE_HPP
5
10
11namespace etl {
12
25template <typename T>
26struct is_trivially_move_assignable : is_trivially_assignable<add_lvalue_reference_t<T>, add_rvalue_reference_t<T>> { };
27
28template <typename T>
30
31} // namespace etl
32
33#endif // TETL_TYPE_TRAITS_IS_TRIVIALLY_MOVE_ASSIGNABLE_HPP
Definition adjacent_find.hpp:8
constexpr bool is_trivially_move_assignable_v
Definition is_trivially_move_assignable.hpp:29
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_trivially_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_trivially_move_assignable.hpp:26