Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Algo
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Algo/IndexOf.h |
| Include | #include "Algo/IndexOf.h" |
namespace Algo
{
template<typename RangeType, typename ValueType, typename ProjectionType>
auto Algo::IndexOfBy
(
RangeType && Range,
const ValueType & Value,
ProjectionType Proj
)
}
Remarks
Returns the index of the first element in the range whose projection is equal to the given value. The index of the first element found, or (SizeType)-1 if none was found (where SizeType = decltype(GetNum(Range)))
Parameters
| Name | Description |
|---|---|
| Range | The range to search. |
| Value | The value to search for. |
| Proj | The projection to apply to the element. |