Standard C++ Library Class Reference
Click on the banner to return to the Class Reference home page.
©Copyright 1996 Rogue Wave Software
mismatch
 Algorithm
Summary
Compares elements from two sequences and returns the first two elements that don't match each
other.
Contents
Synopsis● 
Description● 
Complexity● 
Example● 
Warning● 
Synopsis
#include <algorithm>
template <class InputIterator1, class InputIterator2>
 pair<InputIterator1,InputIterator2>
 mismatch(InputIterator1 first1, InputIterator1 last1,
 InputIterator2 first2);
template <class InputIterator1, class InputIterator2,
 class BinaryPredicate>
 pair<InputIterator1, Inputiterator2>
 mismatch(InputIterator first1, InputIterator1 last1,
 InputIterator2 first2,
 BinaryPredicate binary_pred);










