Boost  v1.57.0
doxygen for www.boost.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
find_if_not.hpp File Reference

Find the first element in a sequence that does not satisfy a predicate. More...

#include <algorithm>
#include <boost/range/begin.hpp>
#include <boost/range/end.hpp>
Include dependency graph for find_if_not.hpp:

Namespaces

 boost
 Duration formatting facet for input.
 
 boost::algorithm
 

Functions

template<typename InputIterator , typename Predicate >
InputIterator boost::algorithm::find_if_not (InputIterator first, InputIterator last, Predicate p)
 Finds the first element in the sequence that does not satisfy the predicate. More...
 
template<typename Range , typename Predicate >
boost::range_iterator< const
Range >::type 
boost::algorithm::find_if_not (const Range &r, Predicate p)
 Finds the first element in the sequence that does not satisfy the predicate. More...
 

Detailed Description

Find the first element in a sequence that does not satisfy a predicate.

Author
Marshall Clow