4#ifndef TETL_TYPE_TRAITS_IS_TRVIALLY_DETRUCTIBLE_HPP
5#define TETL_TYPE_TRAITS_IS_TRVIALLY_DETRUCTIBLE_HPP
7#include <etl/_config/all.hpp>
9#include <etl/_type_traits/bool_constant.hpp>
18struct is_trivially_destructible;
20#if __has_builtin(__is_trivially_destructible)
23struct is_trivially_destructible : bool_constant<
__is_trivially_destructible(T)> { };
26inline constexpr bool is_trivially_destructible_v =
__is_trivially_destructible(T);
Definition adjacent_find.hpp:9