Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Templates
Deprecated * TIsSame has been deprecated, please use std::is_same instead.
References
Module | Core |
Header | /Engine/Source/Runtime/Core/Public/Templates/UnrealTypeTraits.h |
Include | #include "Templates/UnrealTypeTraits.h" |
Syntax
template<typename A, typename B>
struct TNthTypeFromParameterPack
Remarks
TIsSame
Unreal implementation of std::is_same trait.Gets the Nth type in a template parameter pack. N must be less than sizeof...(Types)
Specializations
TNthTypeFromParameterPack< 0, T, OtherTypes... >
TNthTypeFromParameterPack< N, T, OtherTypes... >