Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
std::common_type_t< decltype(GetNum(InputA)), decltype(GetNum(InputB))> Algo::Mismatch
(
const InputAType& InputA, |
Returns the index at which two contiguous containers differ, using operator== to compare pairs of elements. | Algo/Mismatch.h | |
std::common_type_t< decltype(GetNum(InputA)), decltype(GetNum(InputB))> Algo::Mismatch
(
const InputAType& InputA, |
Returns the index at which two contiguous containers differ, using operator== to compare pairs of elements. | Algo/Mismatch.h |
Algo::Mismatch(const InputAType &, const InputBType &)
Description
Returns the index at which two contiguous containers differ, using operator== to compare pairs of elements.
| Name | Algo::Mismatch |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Algo/Mismatch.h |
| Include Path | #include "Algo/Mismatch.h" |
namespace Algo
{
template<typename InputAType, typename InputBType>
std::common_type_t< decltype(GetNum(InputA)), decltype(GetNum(InputB))> Algo::Mismatch
(
const InputAType & InputA,
const InputBType & InputB
)
}
The index at which the containers differ.
Parameters
| Name | Remarks |
|---|---|
| InputA | Container of elements that are used as the first argument to operator==. |
| InputB | Container of elements that are used as the second argument to operator==. |
Algo::Mismatch(const InputAType &, const InputBType &, PredicateType)
Description
Returns the index at which two contiguous containers differ, using operator== to compare pairs of elements.
| Name | Algo::Mismatch |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Algo/Mismatch.h |
| Include Path | #include "Algo/Mismatch.h" |
namespace Algo
{
template<typename InputAType, typename InputBType, typename PredicateType>
std::common_type_t< decltype(GetNum(InputA)), decltype(GetNum(InputB))> Algo::Mismatch
(
const InputAType & InputA,
const InputBType & InputB,
PredicateType Predicate
)
}
The index at which the containers differ.
Parameters
| Name | Remarks |
|---|---|
| InputA | Container of elements that are used as the first argument to operator==. |
| InputB | Container of elements that are used as the second argument to operator==. |
| Predicate | Condition which returns true for elements which are deemed equal. |