Algo::IsSorted

Tests if a range is sorted by a user-defined predicate.

Windows
MacOS
Linux

References

Module

Core

Header

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

Include

#include "Algo/IsSorted.h"

Syntax

namespace Algo
{
    template<typename RangeType, typename PredType>
    bool Algo::IsSorted
    (
        const RangeType & Range,
        PredType Pred
    )
}

Remarks

Tests if a range is sorted by a user-defined predicate.

Returns

true if the range is sorted, false otherwise.

Parameters

Parameter

Description

Range

The container to test for being sorted.

Pred

A binary sorting predicate which describes the ordering of the elements in the array.

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