PrevUpHomeNext

Function template find_backward

boost::text::find_backward

Synopsis

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


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

Description

Analogue of std::find() that finds the last value in [first, last) equal to x.


PrevUpHomeNext