4#ifndef TETL_TYPE_TRAITS_IS_ARRAY_HPP
5#define TETL_TYPE_TRAITS_IS_ARRAY_HPP
7#include <etl/_cstddef/size_t.hpp>
8#include <etl/_type_traits/bool_constant.hpp>
18struct is_array : false_type { };
21struct is_array<T[]> : true_type { };
23template <
typename T, size_t N>
24struct is_array<T[N]> : true_type { };
Definition adjacent_find.hpp:9
constexpr bool is_array_v
Definition is_array.hpp:27