Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
auto Algo::BinarySearchBy
(
const RangeType& Range, |
Algo/BinarySearch.h | ||
decltype(GetNum(Range)) Algo::BinarySearchBy
(
const RangeType& Range, |
Returns index to the first found element with projected value matching Value in a range, the range must be sorted by predicate | Algo/BinarySearch.h |
Algo::BinarySearchBy(const RangeType &, const ValueType &, ProjectionType)
| Name | Algo::BinarySearchBy |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Algo/BinarySearch.h |
| Include Path | #include "Algo/BinarySearch.h" |
namespace Algo
{
template<typename RangeType, typename ValueType, typename ProjectionType>
auto Algo::BinarySearchBy
(
const RangeType & Range,
const ValueType & Value,
ProjectionType Projection
)
}
Algo::BinarySearchBy(const RangeType &, const ValueType &, ProjectionType, SortPredicateType)
Description
Returns index to the first found element with projected value matching Value in a range, the range must be sorted by predicate
| Name | Algo::BinarySearchBy |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Algo/BinarySearch.h |
| Include Path | #include "Algo/BinarySearch.h" |
namespace Algo
{
template<typename RangeType, typename ValueType, typename ProjectionType, typename SortPredicateType>
decltype(GetNum(Range)) Algo::BinarySearchBy
(
const RangeType & Range,
const ValueType & Value,
ProjectionType Projection,
SortPredicateType SortPredicate
)
}
Index of found element, or INDEX_NONE
Parameters
| Name | Remarks |
|---|---|
| Range | The range to search, must be already sorted by SortPredicate |
| Value | The value to search for |
| Projection | Functor or data member pointer, called via Invoke to compare to Value |
| SortPredicate | Predicate for sort comparison, defaults to < |