PrevUpHomeNext

Function template find_not

boost::text::find_not

Synopsis

// In header: <boost/text/algorithm.hpp>


template<typename BidiIter, typename Sentinel, typename T> 
  BidiIter find_not(BidiIter first, Sentinel last, T const & x);

Description

A range-friendly compliment to std::find(); returns an iterator to the first element not equal to x.


PrevUpHomeNext