Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/TArray > API/Runtime/Core/Containers/TArray/HeapPush
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include | #include "Containers/Array.h" |
template<class PREDICATE_CLASS>
SizeType HeapPush
&40;
ElementType && InItem,
const PREDICATE_CLASS & Predicate
&41;
Remarks
- Adds a new element to the heap.
-
If your array contains raw pointers, they will be automatically dereferenced during heapification. Therefore, your predicate will be passed references rather than pointers. The auto-dereferencing behavior does not occur with smart pointers. The index of the new element.
Parameters
| Name | Description |
|---|---|
| InItem | Item to be added. |
| Predicate | Predicate class instance. |