Algo::IntroSortBy

Sort a range of elements by a projection using a user-defined predicate class.

Windows
MacOS
Linux

References

Module

Core

Header

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

Include

#include "Algo/IntroSort.h"

Syntax

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

Remarks

Sort a range of elements by a projection using a user-defined predicate class. The sort is unstable.

Parameters

Parameter

Description

Range

The range to sort.

Projection

The projection to sort by when applied to the element.

Predicate

A binary predicate object, applied to the projection, used to specify if one element should precede another.

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