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>
21struct is_array : false_type { };
24struct is_array<T[]> : true_type { };
26template <
typename T, size_t N>
27struct is_array<T[N]> : true_type { };
constexpr bool is_array_v
Definition is_array.hpp:31
Definition adjacent_find.hpp:9