Navigation
API > API/Runtime > API/Runtime/uLangCore
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ULANG_FORCEINLINE void uLang::Algo::Sort
(
RangeType&& Range |
Sort a range of elements using its operator<. The sort is unstable. | uLang/Common/Algo/Sort.h | |
ULANG_FORCEINLINE void uLang::Algo::Sort
(
RangeType&& Range, |
Sort a range of elements using a user-defined predicate class. The sort is unstable. | uLang/Common/Algo/Sort.h |
uLang::Algo::Sort(RangeType &&)
Description
Sort a range of elements using its operator<. The sort is unstable.
| Name | uLang::Algo::Sort |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Algo/Sort.h |
| Include Path | #include "uLang/Common/Algo/Sort.h" |
namespace uLang
{
namespace Algo
{
template<typename RangeType>
ULANG_FORCEINLINE void uLang::Algo::Sort
(
RangeType && Range
)
}
}
Parameters
| Name | Remarks |
|---|---|
| Range | The range to sort. |
uLang::Algo::Sort(RangeType &&, PredicateType)
Description
Sort a range of elements using a user-defined predicate class. The sort is unstable.
| Name | uLang::Algo::Sort |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Algo/Sort.h |
| Include Path | #include "uLang/Common/Algo/Sort.h" |
namespace uLang
{
namespace Algo
{
template<typename RangeType, typename PredicateType>
ULANG_FORCEINLINE void uLang::Algo::Sort
(
RangeType && Range,
PredicateType Pred
)
}
}
Parameters
| Name | Remarks |
|---|---|
| Range | The range to sort. |
| Predicate | A binary predicate object used to specify if one element should precede another. |