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

Function range_finder

boost::algorithm::range_finder — "Range" finder

Synopsis

// In header: <boost/algorithm/string/finder.hpp>


template<typename ForwardIteratorT> 
  unspecified range_finder(ForwardIteratorT Begin, ForwardIteratorT End);
template<typename ForwardIteratorT> 
  unspecified range_finder(iterator_range< ForwardIteratorT > Range);

Description

Construct the range_finder. The finder does not perform any operation. It simply returns the given range for any input.

Parameters:

Begin

Beginning of the range

End

End of the range

Returns:

An instance of the range_finger object


PrevUpHomeNext