PrevUpHomeNext

Function template find_first_of

boost::text::find_first_of

Synopsis

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


template<typename Iter1, typename Sentinel1, typename Iter2, 
         typename Sentinel2, typename Pred> 
  Iter1 find_first_of(Iter1 first1, Sentinel1 last1, Iter2 first2, 
                      Sentinel2 last2, Pred pred);

Description

Sentinel-friendly version of std::find_first_of().


PrevUpHomeNext