Standard C++ Library Class Reference
Click on the banner to return to the Class Reference home page.
©Copyright 1996 Rogue Wave Software
find_end
 Algorithm
Summary
Finds a subsequence of equal values in a sequence.
Contents
Synopsis● 
Description● 
Complexity● 
Example● 
Warnings● 
See Also● 
Synopsis
#include <algorithm>
template <class ForwardIterator1, class ForwardIterator2>
ForwardIterator1 find_end(ForwardIterator1 first1,
 ForwardIterator1 last1,
 ForwardIterator2 first2, 
 ForwardIterator2 last2);
template <class Forward Iterator1, class ForwardIterator2, 
 class BinaryPredicate>
 ForwardIterator1 find_end(ForwardIterator1 first1, 
 ForwardIterator1 last1,
 ForwardIterator2 first2,
 ForwardIterator2 last2,
 BinaryPredicate pred);










