TArray::StableSort

Stable sorts the array using user defined predicate class.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/Array.h

Include

#include "Containers/Array.h"

Syntax

template<class PREDICATE_CLASS>
void StableSort
(
    const PREDICATE_CLASS & Predicate
)

Remarks

Stable sorts the array using user defined predicate class.

Stable sort is slower than non-stable algorithm.

: If your array contains raw pointers, they will be automatically dereferenced during sorting. Therefore, your predicate will be passed references rather than pointers. The auto-dereferencing behavior does not occur with smart pointers.

Parameters

Parameter

Description

Predicate

Predicate class instance

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