Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Header <boost/algorithm/cxx11/find_if_not.hpp>

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

Marshall Clow

namespace boost {
  namespace algorithm {
    template<typename InputIterator, typename Predicate> 
      InputIterator find_if_not(InputIterator, InputIterator, Predicate);
    template<typename Range, typename Predicate> 
      boost::range_iterator< const Range >::type 
      find_if_not(const Range &, Predicate);
  }
}

PrevUpHomeNext