Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Algo::Copy
(
const InT& Input, |
Copies a range into a container | Algo/Copy.h | |
void Algo::Copy
(
const InT& Input, |
Copies a range into a container. | Algo/Copy.h |
Algo::Copy(const InT &, OutT &)
Description
Copies a range into a container
| Name | Algo::Copy |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Algo/Copy.h |
| Include Path | #include "Algo/Copy.h" |
namespace Algo
{
template<typename InT, typename OutT>
void Algo::Copy
(
const InT & Input,
OutT & Output
)
}
Parameters
| Name | Remarks |
|---|---|
| Input | Any iterable type |
| Output | Container to hold the output |
Algo::Copy(const InT &, OutT &, ENoRef)
Description
Copies a range into a container. Should be used if when the input iterator doesn't return a reference.
| Name | Algo::Copy |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Algo/Copy.h |
| Include Path | #include "Algo/Copy.h" |
namespace Algo
{
template<typename InT, typename OutT>
void Algo::Copy
(
const InT & Input,
OutT & Output,
ENoRef NoRef
)
}
Parameters
| Name | Remarks |
|---|---|
| Input | Any iterable type |
| Output | Container to hold the output |