4#ifndef TETL_TYPE_TRAITS_IS_NOTHROW_CONVERTIBLE_HPP
5#define TETL_TYPE_TRAITS_IS_NOTHROW_CONVERTIBLE_HPP
7#include <etl/_config/all.hpp>
9#include <etl/_type_traits/bool_constant.hpp>
10#include <etl/_type_traits/conjunction.hpp>
11#include <etl/_type_traits/declval.hpp>
12#include <etl/_type_traits/is_void.hpp>
16template <
typename From,
typename To>
19template <
typename From,
typename To>
21 static_cast<To (*)()>(
nullptr);
22 { declval<
void (&)(To)
noexcept>()(declval<From>()) }
noexcept;
26template <
typename From,
typename To>
Definition adjacent_find.hpp:9
constexpr bool is_nothrow_convertible_v
Definition is_nothrow_convertible.hpp:27
Definition is_nothrow_convertible.hpp:17