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