Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Algo > API/Runtime/Core/Algo/Algo__Mismatch
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Algo/Mismatch.h |
| Include | #include "Algo/Mismatch.h" |
namespace Algo
{
template<typename InputAType, typename InputBType>
std::common_type_t< decltype), decltype)> Algo::Mismatch
(
InputAType && InputA,
InputBType && InputB
)
}
Remarks
Returns the index at which two contiguous containers differ, using operator== to compare pairs of elements. The index at which the containers differ.
Parameters
| Name | Description |
|---|---|
| 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==. |