Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TUPtrArrayG
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Sort () |
Sorts the array assuming < operator is defined for ElementType. | uLang/Common/Containers/UniquePointerArray.h | |
void Sort
(
const PredicateType& Predicate |
Sorts the array using user define predicate class. | uLang/Common/Containers/UniquePointerArray.h |
Sort()
Description
Sorts the array assuming < operator is defined for ElementType.
| Name | Sort |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/UniquePointerArray.h |
| Include Path | #include "uLang/Common/Containers/UniquePointerArray.h" |
void Sort()
Sort(const PredicateType &)
Description
Sorts the array using user define predicate class.
| Name | Sort |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/UniquePointerArray.h |
| Include Path | #include "uLang/Common/Containers/UniquePointerArray.h" |
template<class PredicateType>
void Sort
(
const PredicateType & Predicate
)
Parameters
| Name | Remarks |
|---|---|
| Predicate | Predicate instance or lambda, taking const pointer to array element |