Navigation
API > API/Runtime > API/Runtime/TypedElementFramework > API/Runtime/TypedElementFramework/FRowHandleArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Append
(
FRowHandleArrayView AdditionalRows |
Append the provided list of rows to the end of the array. | Elements/Framework/TypedElementRowHandleArray.h | |
| Append the provided list of rows to the end of the array. | Elements/Framework/TypedElementRowHandleArray.h |
Append(FRowHandleArrayView)
Description
Append the provided list of rows to the end of the array. If the current array and the additional rows are both sorted then this function will try to append the additional rows and maintain the sorted status and if applicable the uniqueness state, otherwise the array will be marked as unsorted and no longer unique.
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRowHandleArray.h |
| Include Path | #include "Elements/Framework/TypedElementRowHandleArray.h" |
| Source | /Engine/Source/Runtime/TypedElementFramework/Private/Elements/Framework/TypedElementRowHandleArray.cpp |
void Append
(
FRowHandleArrayView AdditionalRows
)
Append(TConstArrayView< RowHandle >, EFlags)
Description
Append the provided list of rows to the end of the array. If Guarantee is set to IsSorted and/or IsUnique the user guarantees that the provided row handle array view is sorted by row handle and/or only contains unique values. In this case this function will try to append the additional rows and maintain the sorted status and if applicable the uniqueness state, otherwise the array will be marked as unsorted and no longer unique.
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRowHandleArray.h |
| Include Path | #include "Elements/Framework/TypedElementRowHandleArray.h" |
| Source | /Engine/Source/Runtime/TypedElementFramework/Private/Elements/Framework/TypedElementRowHandleArray.cpp |
void Append
(
TConstArrayView< RowHandle > AdditionalRows,
EFlags Guarantee
)