TArray::InsertUninitialized

Inserts a given number of uninitialized elements into the array at given location.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/Array.h

Include

#include "Containers/Array.h"

Syntax

void InsertUninitialized
(
    SizeType Index,
    SizeType Count
)

Remarks

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.

Parameters

Parameter

Description

Index

Tells where to insert the new elements.

Count

Number of elements to add.

See Also

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss