Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TPagedArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Append
(
std::initializer_list< ElementType > InList |
Containers/PagedArray.h | ||
void Append
(
ContainerType&& Container |
Containers/PagedArray.h | ||
void Append
(
const TPagedArray< ElementType, OtherPageSizeInBytes, OtherAllocator >& Other |
Appends a compatible paged array to this container. | Containers/PagedArray.h | |
void Append
(
const ElementType* InSource, |
Appends the parameter contiguous range to this container. | Containers/PagedArray.h |
Append(std::initializer_list< ElementType >)
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/PagedArray.h |
| Include Path | #include "Containers/PagedArray.h" |
void Append
(
std::initializer_list< ElementType > InList
)
Append(ContainerType &&)
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/PagedArray.h |
| Include Path | #include "Containers/PagedArray.h" |
template<typename ContainerType, std::enable_if_t<< ContainerType >::Value ), int >>
void Append
(
ContainerType && Container
)
Append(const TPagedArray< ElementType, OtherPageSizeInBytes, OtherAllocator > &)
Description
Appends a compatible paged array to this container. Note TPagedArray doesn't meet TIsContiguousContainer traits so it won't use the contiguous container overload.
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/PagedArray.h |
| Include Path | #include "Containers/PagedArray.h" |
template<int32 OtherPageSizeInBytes, typename OtherAllocator>
void Append
(
const TPagedArray < ElementType, OtherPageSizeInBytes, OtherAllocator > & Other
)
Append(const ElementType *, SizeType)
Description
Appends the parameter contiguous range to this container.
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/PagedArray.h |
| Include Path | #include "Containers/PagedArray.h" |
void Append
(
const ElementType * InSource,
SizeType InSize
)