Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Algo > API/Runtime/Core/Algo/Algo__Heapify
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Algo/Heapify.h |
| Include | #include "Algo/Heapify.h" |
namespace Algo
{
template<typename RangeType>
void Algo::Heapify
(
RangeType & Range
)
}
Remarks
Builds an implicit min-heap from a range of elements. Assumes < operator is defined for the element type.
Parameters
| Name | Description |
|---|---|
| Range | The range to heapify. |