4#ifndef TETL_TYPE_TRAITS_IS_BUILTIN_SIGNED_INTEGER_HPP
5#define TETL_TYPE_TRAITS_IS_BUILTIN_SIGNED_INTEGER_HPP
7#include <etl/_mpl/contains.hpp>
8#include <etl/_type_traits/bool_constant.hpp>
9#include <etl/_type_traits/remove_cv.hpp>
15 : bool_constant<
mpl::contains_v<remove_cv_t<T>,
mpl::
list<
signed char,
short,
int,
long,
long long>>> { };
Definition adjacent_find.hpp:9
Definition is_builtin_signed_integer.hpp:15
constexpr auto is_builtin_signed_integer_v
Definition is_builtin_signed_integer.hpp:19