4#ifndef TETL_TYPE_TRAITS_IS_NOTHROW_ASSIGNABLE_HPP
5#define TETL_TYPE_TRAITS_IS_NOTHROW_ASSIGNABLE_HPP
7#include <etl/_type_traits/bool_constant.hpp>
8#include <etl/_type_traits/declval.hpp>
9#include <etl/_type_traits/is_assignable.hpp>
17template <
typename T,
typename U>
20template <
typename T,
typename U>
21 requires is_assignable_v<T, U>
24template <
typename T,
typename U>
Definition adjacent_find.hpp:9
constexpr bool is_nothrow_assignable_v
Definition is_nothrow_assignable.hpp:25
If the expression etl::declval<T>() = etl::declval<U>() is well-formed in unevaluated context,...
Definition is_nothrow_assignable.hpp:18