4#ifndef TETL_TYPE_TRAITS_IS_INTEGRAL_HPP
5#define TETL_TYPE_TRAITS_IS_INTEGRAL_HPP
7#include <etl/_type_traits/bool_constant.hpp>
9#if __has_builtin(__is_integral)
13struct is_integral : bool_constant<
__is_integral(T)> { };
17inline constexpr bool is_integral_v =
__is_integral(T);
23 #include <etl/_mpl/contains.hpp>
24 #include <etl/_type_traits/remove_cv.hpp>
29inline constexpr bool is_integral_v = mpl::contains_v<
52struct is_integral : bool_constant<is_integral_v<T> > { };
Definition adjacent_find.hpp:9