Algo::HeapifyBy

Builds an implicit min-heap from a range of elements.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Algo/Heapify.h

Include

#include "Algo/Heapify.h"

Syntax

namespace Algo
{
    template<typename RangeType, typename ProjectionType, typename PredicateType>
    void Algo::HeapifyBy
    (
        RangeType & Range,
        ProjectionType Projection
    )
}

Remarks

Builds an implicit min-heap from a range of elements. Assumes < operator is defined for the projected element type.

Parameters

Parameter

Description

Range

The range to heapify.

Projection

The projection to apply to the elements.

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