Function mismatch
boost::compute::mismatch
Synopsis
template<typename InputIterator1, typename InputIterator2>
std::pair< InputIterator1, InputIterator2 >
mismatch(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2,
command_queue & queue = system::default_queue());
template<typename InputIterator1, typename InputIterator2>
std::pair< InputIterator1, InputIterator2 >
mismatch(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2,
InputIterator2 last2,
command_queue & queue = system::default_queue());
Description
Возвращает пару итераторов, указывающих на первое положение, где диапазон [first1, last1) и диапазон, начинающийся с first2, отличаются.