Standard C++ Library Class Reference
Click on the banner to return to the Class Reference home page.
©Copyright 1996 Rogue Wave Software
find_first_of
 Algorithm
Summary
Finds the first occurrence of any value from one sequence in another sequence.
Contents
Synopsis● 
Description● 
Complexity● 
Example● 
Warnings● 
See Also● 
Synopsis
#include <algorithm>
template <class ForwardIterator1, class ForwardIterator2>
ForwardIterator1 find_first_of (ForwardIterator1 first1,
 ForwardIterator1 last1,
 ForwardIterator2 first2,
 ForwardIterator2 last2);
template <class ForwardIterator1, class ForwardIterator2,
 class BinaryPredicate>
ForwardIterator1 find_first_of (ForwardIterator1 first1,
 ForwardIterator1 last1,
 ForwardIterator2 first2,
 ForwardIterator2 last2,










