UDocumentation
UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
IsIntegral.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
10
template
<
typename
T>
11
struct
TIsIntegral
12
{
13
enum
{
Value
=
false
};
14
};
15
16
template
<>
struct
TIsIntegral
<
bool
> {
enum
{
Value
=
true
}; };
17
template
<>
struct
TIsIntegral
<
char
> {
enum
{
Value
=
true
}; };
18
template
<>
struct
TIsIntegral
<
signed
char
> {
enum
{
Value
=
true
}; };
19
template
<>
struct
TIsIntegral
<
unsigned
char
> {
enum
{
Value
=
true
}; };
20
template
<>
struct
TIsIntegral
<
char16_t
> {
enum
{
Value
=
true
}; };
21
template
<>
struct
TIsIntegral
<
char32_t
> {
enum
{
Value
=
true
}; };
22
template
<>
struct
TIsIntegral
<
wchar_t
> {
enum
{
Value
=
true
}; };
23
template
<>
struct
TIsIntegral
<
short
> {
enum
{
Value
=
true
}; };
24
template
<>
struct
TIsIntegral
<
unsigned
short
> {
enum
{
Value
=
true
}; };
25
template
<>
struct
TIsIntegral
< int> {
enum
{
Value
=
true
}; };
26
template
<>
struct
TIsIntegral
<
unsigned
int> {
enum
{
Value
=
true
}; };
27
template
<>
struct
TIsIntegral
<
long
> {
enum
{
Value
=
true
}; };
28
template
<>
struct
TIsIntegral
<
unsigned
long
> {
enum
{
Value
=
true
}; };
29
template
<>
struct
TIsIntegral
<
long
long
> {
enum
{
Value
=
true
}; };
30
template
<>
struct
TIsIntegral
<
unsigned
long
long
> {
enum
{
Value
=
true
}; };
31
32
template
<
typename
T>
struct
TIsIntegral
<const T> {
enum
{
Value
=
TIsIntegral<T>::Value
}; };
33
template
<
typename
T>
struct
TIsIntegral
<
volatile
T> {
enum
{
Value
=
TIsIntegral<T>::Value
}; };
34
template
<
typename
T>
struct
TIsIntegral
<const
volatile
T> {
enum
{
Value
=
TIsIntegral<T>::Value
}; };
CoreTypes.h
StaticCastSharedRef
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition
SharedPointer.h:127
char16_t
uint_least16_t char16_t
Definition
MarketplaceKitWrapper.h:64
char32_t
uint_least32_t char32_t
Definition
MarketplaceKitWrapper.h:65
bool
const bool
Definition
NetworkReplayStreaming.h:178
TIsIntegral
Definition
IsIntegral.h:12
TIsIntegral::Value
@ Value
Definition
IsIntegral.h:13
Engine
Source
Runtime
Core
Public
Templates
IsIntegral.h
Generated by
1.9.8