tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
is_trivially_copy_constructible.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_TYPE_TRAITS_IS_TRIVIAL_COPY_CONSTRUCTIBLE_HPP
4#define TETL_TYPE_TRAITS_IS_TRIVIAL_COPY_CONSTRUCTIBLE_HPP
5
10
11namespace etl {
12
23template <typename T>
24struct is_trivially_copy_constructible : is_trivially_constructible<T, add_lvalue_reference_t<add_const_t<T>>> { };
25
26template <typename T>
28
29} // namespace etl
30
31#endif // TETL_TYPE_TRAITS_IS_TRIVIAL_COPY_CONSTRUCTIBLE_HPP
Definition adjacent_find.hpp:8
constexpr bool is_trivially_copy_constructible_v
Definition is_trivially_copy_constructible.hpp:27
static constexpr bool value
Definition integral_constant.hpp:10
The variable definition does not call any operation that is not trivial. For the purposes of this che...
Definition is_trivially_constructible.hpp:16
Same as copy, but uses etl::is_trivially_constructible<T, T const&>.
Definition is_trivially_copy_constructible.hpp:24