Go to the source code of this file.
|
| struct | TIsDerivedFrom< DerivedType, BaseType > |
| |
| struct | TNthTypeFromParameterPack< N, T, OtherTypes... > |
| |
| struct | TNthTypeFromParameterPack< 0, T, OtherTypes... > |
| |
| struct | TFormatSpecifier< T > |
| |
| struct | TIsReferenceType< T > |
| |
| struct | TIsReferenceType< T & > |
| |
| struct | TIsReferenceType< T && > |
| |
| struct | TIsLValueReferenceType< T > |
| |
| struct | TIsLValueReferenceType< T & > |
| |
| struct | TIsRValueReferenceType< T > |
| |
| struct | TIsRValueReferenceType< T && > |
| |
| struct | TIsFundamentalType< T > |
| |
| struct | TIsFunction< T > |
| |
| struct | TIsFunction< RetType(Params...)> |
| |
| struct | TIsZeroConstructType< T > |
| |
| struct | TIsWeakPointerType< T > |
| |
| struct | TNameOf< T > |
| |
| struct | TCallTraitsParamTypeHelper |
| |
| struct | TCallTraitsParamTypeHelper< T, true > |
| |
| struct | TCallTraitsParamTypeHelper< T *, true > |
| |
| struct | TCallTraitsBase< T > |
| |
| struct | TCallTraits< T > |
| |
| struct | TCallTraits< T & > |
| |
| struct | TCallTraits< T[N]> |
| |
| struct | TCallTraits< const T[N]> |
| |
| struct | TTypeTraitsBase< T > |
| |
| struct | TTypeTraits< T > |
| |
| struct | FVirtualDestructor |
| |
| struct | TMoveSupportTraitsBase< T, U > |
| |
| struct | TMoveSupportTraitsBase< T, const T & > |
| |
| struct | TMoveSupportTraits< T > |
| |
| struct | TIsBitwiseConstructible< T, Arg > |
| |
| struct | TIsBitwiseConstructible< T, T > |
| |
| struct | TIsBitwiseConstructible< const T, U > |
| |
| struct | TIsBitwiseConstructible< const T *, T * > |
| |
| struct | TIsBitwiseConstructible< uint8, int8 > |
| |
| struct | TIsBitwiseConstructible< int8, uint8 > |
| |
| struct | TIsBitwiseConstructible< uint16, int16 > |
| |
| struct | TIsBitwiseConstructible< int16, uint16 > |
| |
| struct | TIsBitwiseConstructible< uint32, int32 > |
| |
| struct | TIsBitwiseConstructible< int32, uint32 > |
| |
| struct | TIsBitwiseConstructible< uint64, int64 > |
| |
| struct | TIsBitwiseConstructible< int64, uint64 > |
| |
| struct | TIsBitwiseConstructible< int8, ANSICHAR > |
| |
| struct | TIsBitwiseConstructible< uint8, ANSICHAR > |
| |
| struct | TIsBitwiseConstructible< UTF8CHAR, ANSICHAR > |
| |
| struct | TIsBitwiseConstructible< int8, UTF8CHAR > |
| |
| struct | TIsBitwiseConstructible< uint8, UTF8CHAR > |
| |
◆ Expose_TFormatSpecifier
| #define Expose_TFormatSpecifier |
( |
|
type, |
|
|
|
format |
|
) |
| |
Value:template<> \
{ \
template <typename CharType = TCHAR> \
{ \
} \
};
◆ Expose_TNameOf
| #define Expose_TNameOf |
( |
|
type | ) |
|
Value:template<> \
{ \
{ \
} \
};
Definition UnrealTypeTraits.h:191
static TCHAR const * GetName()
Definition UnrealTypeTraits.h:192
◆ GENERATE_MEMBER_FUNCTION_CHECK
Value:template <typename T> \
{ \
template <
typename U, Result(U::*)(__VA_ARGS__) ConstModifier>
struct Check; \
template <
typename U>
static int MemberTest(...); \
public: \
};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
◆ HAS_TRIVIAL_CONSTRUCTOR
◆ IS_EMPTY
◆ IS_POD
◆ Expose_TFormatSpecifier() [1/7]
| Expose_TFormatSpecifier |
( |
bool |
, |
|
|
"%i" |
|
|
) |
| |
◆ Expose_TFormatSpecifier() [2/7]
| u u d d f Expose_TFormatSpecifier |
( |
double |
, |
|
|
"%f" |
|
|
) |
| |
◆ Expose_TFormatSpecifier() [3/7]
| u u d Expose_TFormatSpecifier |
( |
int16 |
, |
|
|
"%d" |
|
|
) |
| |
◆ Expose_TFormatSpecifier() [4/7]
| u u d d Expose_TFormatSpecifier |
( |
int64 |
, |
|
|
"%lld" |
|
|
) |
| |
◆ Expose_TFormatSpecifier() [5/7]
| u u d d f f Expose_TFormatSpecifier |
( |
long |
, |
|
|
"%ld" |
|
|
) |
| |
◆ Expose_TFormatSpecifier() [6/7]
| u Expose_TFormatSpecifier |
( |
uint16 |
, |
|
|
"%u" |
|
|
) |
| |
◆ Expose_TFormatSpecifier() [7/7]
| u u Expose_TFormatSpecifier |
( |
uint64 |
, |
|
|
"%llu" |
|
|
) |
| |
◆ Expose_TNameOf()