Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void ParallelForImpl::CallBody
(
const FunctionType& Body, |
Helper to call body with context reference. | Async/ParallelFor.h | |
void ParallelForImpl::CallBody
(
const FunctionType& Body, |
Helper specialization for "no context", which changes the assumed body call signature. | Async/ParallelFor.h |
ParallelForImpl::CallBody(const FunctionType &, const TArrayView< ContextType > &, int32, int32)
Description
Helper to call body with context reference.
| Name | ParallelForImpl::CallBody |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Async/ParallelFor.h |
| Include Path | #include "Async/ParallelFor.h" |
namespace ParallelForImpl
{
template<typename FunctionType, typename ContextType>
void ParallelForImpl::CallBody
(
const FunctionType & Body,
const TArrayView < ContextType > & Contexts,
int32 TaskIndex,
int32 Index
)
}
ParallelForImpl::CallBody(const FunctionType &, const TArrayView< TYPE_OF_NULLPTR > &, int32, int32)
Description
Helper specialization for "no context", which changes the assumed body call signature.
| Name | ParallelForImpl::CallBody |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Async/ParallelFor.h |
| Include Path | #include "Async/ParallelFor.h" |
namespace ParallelForImpl
{
template<typename FunctionType>
void ParallelForImpl::CallBody
(
const FunctionType & Body,
const TArrayView < TYPE_OF_NULLPTR > &,
int32,
int32 Index
)
}