IfAThenAElseB

Branchless pointer selection return A ? A : B;

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/ContainerAllocationPolicies.h

Include

#include "Containers/ContainerAllocationPolicies.h"

Source

/Engine/Source/Runtime/Core/Public/Templates/UnrealTemplate.h

Syntax

template<typename ReferencedType>
ReferencedType * IfAThenAElseB
(
    ReferencedType * A,
    ReferencedType * B
)

Remarks

Branchless pointer selection return A ? A : B;

Chooses between the two parameters based on whether the first is nullptr or not.

Returns

If the first parameter provided is non-nullptr, it is returned; otherwise the second parameter is returned.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss