Navigation
API > API/Runtime > API/Runtime/uLangCore
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ULANG_FORCEINLINE auto uLang::Algo::LowerBoundBy
(
const RangeType& Range, |
uLang/Common/Algo/BinarySearch.h | ||
ULANG_FORCEINLINE auto uLang::Algo::LowerBoundBy
(
const RangeType& Range, |
Performs binary search, resulting in position of the first element with projected value >= Value using predicate | uLang/Common/Algo/BinarySearch.h |
uLang::Algo::LowerBoundBy(const RangeType &, const ValueType &, ProjectionType)
| Name | uLang::Algo::LowerBoundBy |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Algo/BinarySearch.h |
| Include Path | #include "uLang/Common/Algo/BinarySearch.h" |
namespace uLang
{
namespace Algo
{
template<typename RangeType, typename ValueType, typename ProjectionType>
ULANG_FORCEINLINE auto uLang::Algo::LowerBoundBy
(
const RangeType & Range,
const ValueType & Value,
ProjectionType Projection
)
}
}
uLang::Algo::LowerBoundBy(const RangeType &, const ValueType &, ProjectionType, SortPredicateType)
Description
Performs binary search, resulting in position of the first element with projected value >= Value using predicate
| Name | uLang::Algo::LowerBoundBy |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Algo/BinarySearch.h |
| Include Path | #include "uLang/Common/Algo/BinarySearch.h" |
namespace uLang
{
namespace Algo
{
template<typename RangeType, typename ValueType, typename ProjectionType, typename SortPredicateType>
ULANG_FORCEINLINE auto uLang::Algo::LowerBoundBy
(
const RangeType & Range,
const ValueType & Value,
ProjectionType Projection,
SortPredicateType SortPredicate
)
}
}
Position of the first element >= Value, may be position after last element in range
Parameters
| Name | Remarks |
|---|---|
| Range | Range to search through, must be already sorted by SortPredicate |
| Value | Value to look for |
| Projection | Functor or data member pointer, called via Invoke to compare to Value |
| SortPredicate | Predicate for sort comparison, defaults to < |