Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSparseArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void StableSort () |
Stable sorts the elements assuming < operator is defined for ElementType. | Containers/SparseArray.h | |
void StableSort
(
const PREDICATE_CLASS& Predicate |
Stable sorts the elements using the provided comparison class. | Containers/SparseArray.h |
StableSort()
Description
Stable sorts the elements assuming < operator is defined for ElementType.
| Name | StableSort |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SparseArray.h |
| Include Path | #include "Containers/SparseArray.h" |
void StableSort()
StableSort(const PREDICATE_CLASS &)
Description
Stable sorts the elements using the provided comparison class.
| Name | StableSort |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SparseArray.h |
| Include Path | #include "Containers/SparseArray.h" |
template<typename PREDICATE_CLASS>
void StableSort
(
const PREDICATE_CLASS & Predicate
)