Navigation
API > API/Runtime > API/Runtime/uLangCore
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ULANG_FORCEINLINE void uLang::Algo::HeapSort
(
RangeType& Range |
Performs heap sort on the elements. Assumes < operator is defined for the element type. | uLang/Common/Algo/HeapSort.h | |
ULANG_FORCEINLINE void uLang::Algo::HeapSort
(
RangeType& Range, |
Performs heap sort on the elements. | uLang/Common/Algo/HeapSort.h |
uLang::Algo::HeapSort(RangeType &)
Description
Performs heap sort on the elements. Assumes < operator is defined for the element type.
| Name | uLang::Algo::HeapSort |
| 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>
ULANG_FORCEINLINE void uLang::Algo::HeapSort
(
RangeType & Range
)
}
}
Parameters
| Name | Remarks |
|---|---|
| Range | The range to sort. |
uLang::Algo::HeapSort(RangeType &, PredicateType)
Description
Performs heap sort on the elements.
| Name | uLang::Algo::HeapSort |
| 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 PredicateType>
ULANG_FORCEINLINE void uLang::Algo::HeapSort
(
RangeType & Range,
PredicateType Predicate
)
}
}
Parameters
| Name | Remarks |
|---|---|
| Range | The range to sort. |
| Predicate | A binary predicate object used to specify if one element should precede another. |