Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TArrayG
Description
Adds new items to the end of the array, possibly reallocating the whole array to fit. The new items will be zeroed.
Caution, AddZeroed() will create elements without calling the constructor and this is not appropriate for element types that require a constructor to function properly.
| Name | AddZeroed |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/Array.h |
| Include Path | #include "uLang/Common/Containers/Array.h" |
int32_t AddZeroed
(
int32_t Count
)
Index to the first of the new items.
Parameters
| Name | Remarks |
|---|---|
| Count | The number of new items to add. |
See Also
-
Add
-
AddUnique
-
Append
-
Insert