TArray::HeapPush

Adds a new element to the heap.

Windows
MacOS
Linux

References

Module

Core

Header

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

Include

#include "Containers/Array.h"

Syntax

SizeType HeapPush
(
    ElementType && InItem
)

Remarks

Adds a new element to the heap. Assumes < operator is defined for the template type.

: If your array contains raw pointers, they will be automatically dereferenced during heapification. Therefore, your array will be heapified by the values being pointed to, rather than the pointers' values. The auto-dereferencing behavior does not occur with smart pointers.

Returns

The index of the new element.

Parameters

Parameter

Description

InItem

Item to be added.

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