Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Templates
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Templates/UnrealTemplate.h |
| Include | #include "Templates/UnrealTemplate.h" |
template<typename ReferencedType>
ReferencedType * IfAThenAElseB
(
ReferencedType * A,
ReferencedType * B
)
Remarks
Chooses between the two parameters based on whether the first is nullptr or not. If the first parameter provided is non-nullptr, it is returned; otherwise the second parameter is returned.