Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TArrayG
Description
Inserts a given number of uninitialized elements into the array at given location.
Caution, InsertUninitialized() will create elements without calling the constructor and this is not appropriate for element types that require a constructor to function properly.
| Name | InsertUninitialized |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/Array.h |
| Include Path | #include "uLang/Common/Containers/Array.h" |
void InsertUninitialized
(
int32_t Index,
int32_t Count
)
Parameters
| Name | Remarks |
|---|---|
| Index | Tells where to insert the new elements. |
| Count | Number of elements to add. |
See Also
-
Insert
-
InsertZeroed