thrust::mismatch
Defined in thrust/mismatch.h
- 
template<typename InputIterator1, typename InputIterator2, typename BinaryPredicate>
 thrust::pair<InputIterator1, InputIterator2> thrust::mismatch(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, BinaryPredicate pred)
- mismatchfinds the first position where the two ranges- [first1, last1)and- [first2, first2 + (last1 - first1))differ. The two versions of- mismatchuse different tests for whether elements differ.- This version of - mismatchfinds the first iterator- iin- [first1, last1)such that- pred(*i, *(first2 + (i - first1))is- false. The return value is a- pairwhose first element is- iand whose second element is- *(first2 + (i - first1)). If no such iterator- iexists, the return value is a- pairwhose first element is- last1and whose second element is- *(first2 + (last1 - first1)).- #include <thrust/mismatch.h> #include <thrust/device_vector.h> ... thrust::device_vector<int> vec1(4); thrust::device_vector<int> vec2(4); vec1[0] = 0; vec2[0] = 0; vec1[1] = 5; vec2[1] = 5; vec1[2] = 3; vec2[2] = 8; vec1[3] = 7; vec2[3] = 7; using Iterator = thrust::device_vector<int>::iterator; thrust::pair<Iterator,Iterator> result; result = thrust::mismatch(vec1.begin(), vec1.end(), vec2.begin(), thrust::equal_to<int>()); // result.first is vec1.begin() + 2 // result.second is vec2.begin() + 2 - See also - find - See also - find_if - Parameters
- first1 – The beginning of the first sequence. 
- last1 – The end of the first sequence. 
- first2 – The beginning of the second sequence. 
- pred – The binary predicate to compare elements. 
 
- Template Parameters
- InputIterator1 – is a model of Input Iterator. 
- InputIterator2 – is a model of Input Iterator. 
- Predicate – is a model of Input Iterator. 
 
- Returns
- The first position where the sequences differ.