Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TArrayG
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Appends the specified array to this array.Allocator changing version. | uLang/Common/Containers/Array.h | ||
| Appends the specified array to this array. | uLang/Common/Containers/Array.h | ||
ULANG_FORCEINLINE void Append
(
std::initializer_list< ElementType > InitList |
Adds an initializer list of elements to the end of the TArrayG. | uLang/Common/Containers/Array.h | |
void Append
(
const ElementType* Ptr, |
Adds a raw array of elements to the end of the TArrayG. | uLang/Common/Containers/Array.h |
Append(const TArrayG< ElementType, OtherElementAllocatorType, OtherRawAllocatorArgsType... > &)
Description
Appends the specified array to this array.
Allocator changing version.
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/Array.h |
| Include Path | #include "uLang/Common/Containers/Array.h" |
template<typename OtherElementAllocatorType, typename... OtherRawAllocatorArgsType>
void Append
(
const TArrayG < ElementType, OtherElementAllocatorType, OtherRawAllocatorArgsType... > & Source
)
Parameters
| Name | Remarks |
|---|---|
| Source | The array to append. |
See Also
-
Add
-
Insert
Append(TArrayG< ElementType, OtherElementAllocatorType, OtherRawAllocatorArgsType... > &&)
Description
Appends the specified array to this array.
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/Array.h |
| Include Path | #include "uLang/Common/Containers/Array.h" |
template<typename OtherElementAllocatorType, typename... OtherRawAllocatorArgsType>
void Append
(
TArrayG < ElementType, OtherElementAllocatorType, OtherRawAllocatorArgsType... > && Source
)
Parameters
| Name | Remarks |
|---|---|
| Source | The array to append. |
See Also
-
Add
-
Insert
Append(std::initializer_list< ElementType >)
Description
Adds an initializer list of elements to the end of the TArrayG.
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/Array.h |
| Include Path | #include "uLang/Common/Containers/Array.h" |
ULANG_FORCEINLINE void Append
(
std::initializer_list< ElementType > InitList
)
Parameters
| Name | Remarks |
|---|---|
| InitList | The initializer list of elements to add. |
See Also
-
Add
-
Insert
Append(const ElementType *, int32_t)
Description
Adds a raw array of elements to the end of the TArrayG.
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/Array.h |
| Include Path | #include "uLang/Common/Containers/Array.h" |
void Append
(
const ElementType * Ptr,
int32_t Count
)
Parameters
| Name | Remarks |
|---|---|
| Ptr | A pointer to an array of elements to add. |
| Count | The number of elements to insert from Ptr. |
See Also
-
Add
-
Insert