Algo::StableSortBy

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

Windows
MacOS
Linux

References

Module

Core

Header

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

Include

#include "Algo/StableSort.h"

Syntax

namespace Algo
{
    template<typename RangeType, typename ProjectionType, typename PredicateType>
    void Algo::StableSortBy
    (
        RangeType & Range,
        ProjectionType Proj,
        PredicateType Pred
    )
}

Remarks

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

Parameters

Parameter

Description

Range

The range to sort.

Proj

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