Navigation
API > API/Runtime > API/Runtime/Core
Description
Implementation detail for Visit(Callable, Variants...). Builds an array of invokers, and forwards the variants to the callable for the specific EncodedIndex
| Name | UE::Core::Private::VisitImpl |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/TVariantMeta.h |
| Include Path | #include "Misc/TVariantMeta.h" |
namespace UE
{
namespace Core
{
namespace Private
{
template<typename Func, SIZE_T... EncodedIndices, SIZE_T... VariantIndices, typename... Variants>
decltype(auto) UE::Core::Private::VisitImpl
(
SIZE_T EncodedIndex,
Func && Callable,
TIntegerSequence < SIZE_T, EncodedIndices... > &&,
TIntegerSequence < SIZE_T, VariantIndices... > && VariantIndicesSeq,
Variants &&... Args
)
}
}
}