Table of Contents
Previous Section Next Section

find

template <class InIter, class T>    InIter find(InIter start, InIter end, const T &val);

The find( ) algorithm searches the range start to end for the value specified by val. It returns an iterator to the first occurrence of the element or to end if the value is not in the sequence.


Table of Contents
Previous Section Next Section