Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
IsInitializerList.h
Go to the documentation of this file.
1
// Copyright Epic Games, Inc. All Rights Reserved.
2
3
#
pragma
once
4
5
#
include
<
initializer_list
>
6
7
/**
8
* Traits class which tests if a type is an initializer list.
9
*/
10
template
<
typename
T>
11
struct
TIsInitializerList
12
{
13
static
constexpr
bool
Value
=
false
;
14
};
15
16
template
<
typename
T>
17
struct
TIsInitializerList
<
std
::initializer_list<T>>
18
{
19
static
constexpr
bool
Value
=
true
;
20
};
21
22
template
<
typename
T>
struct
TIsInitializerList
<
const
T> {
enum
{
Value
=
TIsInitializerList
<T>::Value }; };
23
template
<
typename
T>
struct
TIsInitializerList
<
volatile
T> {
enum
{
Value
=
TIsInitializerList
<T>::Value }; };
24
template
<
typename
T>
struct
TIsInitializerList
<
const
volatile
T> {
enum
{
Value
=
TIsInitializerList
<T>::Value }; };
std
Definition
json.hpp:4518
TIsInitializerList< const T >::Value
@ Value
Definition
IsInitializerList.h:22
TIsInitializerList< const volatile T >::Value
@ Value
Definition
IsInitializerList.h:24
TIsInitializerList< std::initializer_list< T > >::Value
static constexpr bool Value
Definition
IsInitializerList.h:19
TIsInitializerList< volatile T >::Value
@ Value
Definition
IsInitializerList.h:23
TIsInitializerList
Definition
IsInitializerList.h:12
TIsInitializerList::Value
static constexpr bool Value
Definition
IsInitializerList.h:13
Downloads
ArkServerAPI_NEW
ASA
AsaApi
AsaApi
Core
Public
API
UE
Templates
IsInitializerList.h
Generated by
1.10.0