TArray::AddZeroed

Adds new items to the end of the array, possibly reallocating the whole array to fit.

Windows
MacOS
Linux

References

Module

Core

Header

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

Include

#include "Containers/Array.h"

Syntax

SizeType AddZeroed
(
    SizeType Count
)

Remarks

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.

Returns

Index to the first of the new items.

Parameters

Parameter

Description

Count

The number of new items 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