Navigation
API > API/Runtime > API/Runtime/uLangCore
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ULANG_FORCEINLINE void uLang::Algo::HeapSortBy
(
RangeType& Range, |
Performs heap sort on the elements. Assumes < operator is defined for the projected element type. | uLang/Common/Algo/HeapSort.h | |
ULANG_FORCEINLINE void uLang::Algo::HeapSortBy
(
RangeType& Range, |
Performs heap sort on the elements. | uLang/Common/Algo/HeapSort.h |
uLang::Algo::HeapSortBy(RangeType &, ProjectionType)
Description
Performs heap sort on the elements. Assumes < operator is defined for the projected element type.
| Name | uLang::Algo::HeapSortBy |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Algo/HeapSort.h |
| Include Path | #include "uLang/Common/Algo/HeapSort.h" |
namespace uLang
{
namespace Algo
{
template<typename RangeType, typename ProjectionType>
ULANG_FORCEINLINE void uLang::Algo::HeapSortBy
(
RangeType & Range,
ProjectionType Projection
)
}
}
Parameters
| Name | Remarks |
|---|---|
| Range | The range to sort. |
| Projection | The projection to sort by when applied to the element. |
uLang::Algo::HeapSortBy(RangeType &, ProjectionType, PredicateType)
Description
Performs heap sort on the elements.
| Name | uLang::Algo::HeapSortBy |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Algo/HeapSort.h |
| Include Path | #include "uLang/Common/Algo/HeapSort.h" |
namespace uLang
{
namespace Algo
{
template<typename RangeType, typename ProjectionType, typename PredicateType>
ULANG_FORCEINLINE void uLang::Algo::HeapSortBy
(
RangeType & Range,
ProjectionType Projection,
PredicateType Predicate
)
}
}
Parameters
| Name | Remarks |
|---|---|
| Range | The range to sort. |
| Projection | The projection to sort by when applied to the element. |
| Predicate | A binary predicate object, applied to the projection, used to specify if one element should precede another. |