UDocumentation
UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
IsArrayOrRefOfType.h
Go to the documentation of this file.
1
// Copyright Epic Games, Inc. All Rights Reserved.
2
3
#pragma once
4
5
#include "
CoreTypes.h
"
6
7
11
template
<
typename
T,
typename
ArrType>
12
struct
TIsArrayOrRefOfType
13
{
14
enum
{
Value
=
false
};
15
};
16
17
template
<
typename
ArrType>
struct
TIsArrayOrRefOfType
<
ArrType
[],
ArrType
> {
enum
{
Value
=
true
}; };
18
template
<
typename
ArrType>
struct
TIsArrayOrRefOfType
<const
ArrType
[],
ArrType
> {
enum
{
Value
=
true
}; };
19
template
<
typename
ArrType>
struct
TIsArrayOrRefOfType
<
volatile
ArrType
[],
ArrType
> {
enum
{
Value
=
true
}; };
20
template
<
typename
ArrType>
struct
TIsArrayOrRefOfType
<const
volatile
ArrType
[],
ArrType
> {
enum
{
Value
=
true
}; };
21
22
template
<
typename
ArrType,
unsigned
int
N>
struct
TIsArrayOrRefOfType
<
ArrType
[N],
ArrType
> {
enum
{
Value
=
true
}; };
23
template
<
typename
ArrType,
unsigned
int
N>
struct
TIsArrayOrRefOfType
<const
ArrType
[N],
ArrType
> {
enum
{
Value
=
true
}; };
24
template
<
typename
ArrType,
unsigned
int
N>
struct
TIsArrayOrRefOfType
<
volatile
ArrType
[N],
ArrType
> {
enum
{
Value
=
true
}; };
25
template
<
typename
ArrType,
unsigned
int
N>
struct
TIsArrayOrRefOfType
<const
volatile
ArrType
[N],
ArrType
> {
enum
{
Value
=
true
}; };
26
27
template
<
typename
ArrType,
unsigned
int
N>
struct
TIsArrayOrRefOfType
<
ArrType
(&)[N],
ArrType
> {
enum
{
Value
=
true
}; };
28
template
<
typename
ArrType,
unsigned
int
N>
struct
TIsArrayOrRefOfType
<const
ArrType
(&)[N],
ArrType
> {
enum
{
Value
=
true
}; };
29
template
<
typename
ArrType,
unsigned
int
N>
struct
TIsArrayOrRefOfType
<
volatile
ArrType
(&)[N],
ArrType
> {
enum
{
Value
=
true
}; };
30
template
<
typename
ArrType,
unsigned
int
N>
struct
TIsArrayOrRefOfType
<const
volatile
ArrType
(&)[N],
ArrType
> {
enum
{
Value
=
true
}; };
CoreTypes.h
StaticCastSharedRef
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition
SharedPointer.h:127
EColorPickerChannels::Value
@ Value
TIsArrayOrRefOfType
Definition
IsArrayOrRefOfType.h:13
TIsArrayOrRefOfType::Value
@ Value
Definition
IsArrayOrRefOfType.h:14
Engine
Source
Runtime
Core
Public
Templates
IsArrayOrRefOfType.h
Generated by
1.9.8