Struct call_traits< T[N]>
Synopsis
#include <include/EASTL/bonus/call_traits.h>
template <typename T, size_t N>
struct call_traits<T [N]>
Description
No description yet.
Source
Lines 72-83 in include/EASTL/bonus/call_traits.h.
template <typename T, size_t N>
struct call_traits<T [N]>
{
private:
typedef T array_type[N];
public:
typedef const T* value_type;
typedef array_type& reference;
typedef const array_type& const_reference;
typedef const T* const param_type;
};