Struct is_meta_pointer_like< Type(*)[N]>
Synopsis
#include <src/entt/meta/pointer.hpp>
template<typename Type, std::size_t N>
struct is_meta_pointer_like<Type (*)[N]>
: std::false_type
Description
Partial specialization used to reject pointers to arrays.
- Template Parameters
Type
- Type of elements of the array.N
- Number of elements of the array.
Inheritance
Ancestors: false_type
Source
Lines 23-25 in src/entt/meta/pointer.hpp.
template<typename Type, std::size_t N>
struct is_meta_pointer_like<Type (*)[N]>
: std::false_type {};