Navigation
API > API/Runtime > API/Runtime/Chaos
Description
Move the elements in the array Items in the range [BeginIndex, EndIndex) down by DownShift. Does not resize the array.
| Name | Chaos::MoveArrayItemsDown |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/Framework/ArrayAlgorithm.h |
| Include Path | #include "Chaos/Framework/ArrayAlgorithm.h" |
namespace Chaos
{
template<typename TItemArray>
void Chaos::MoveArrayItemsDown
(
TItemArray & Items,
const int32 BeginIndex,
const int32 EndIndex,
const int32 DownShift
)
}