Algo::IsSorted

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

Windows
MacOS
Linux

Deprecated

  • IsSorted taking a pointer and size has been deprecated - please pass a TArrayView instead

References

Module

Core

Header

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

Include

#include "Algo/IsSorted.h"

Syntax

namespace Algo
{
    template<typename T, typename PredType>
    bool Algo::IsSorted
    (
        const T * Array,
        int32 ArraySize,
        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

Array

A pointer to the array to test for being sorted.

ArraySize

The number of elements in the array.

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