Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Algo
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Algo/TiedTupleOutput.h |
| Include | #include "Algo/TiedTupleOutput.h" |
namespace Algo
{
template<typename... OutputTypes>
Private::TTiedTupleAdder < OutputTypes... > Algo::TieTupleAdd
(
OutputTypes &... Outputs
)
}
Remarks
Ties n objects with an Add function, usually containers, into one object with an Add function accepting an n-tuple that forwards the Add calls.
This is useful for algorithms such as Algo::Transform and Algo::Copy.
Example: TArray
Parameters
| Name | Description |
|---|---|
| Outputs | Objects with an Add() function |