PrevUpHomeNext

Function template equal

boost::text::equal

Synopsis

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


template<typename Iter1, typename Sentinel1, typename Iter2, 
         typename Sentinel2> 
  bool equal(Iter1 first1, Sentinel1 last1, Iter2 first2, Sentinel2 last2);

Description

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


PrevUpHomeNext