PrevUpHomeNext

Function template rfind

boost::text::v1::rfind

Synopsis

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


template<code_point_iter I1, code_point_iter I2> 
  std::ranges::subrange< I1 > rfind(I1 first1, I1 last1, I2 first2, I2 last2);

Description

A Unicode-friendly version of std::string::rfind(). Compatibility overloads exist to support operating on code points and graphemes; ranges and null-terminated strings; and different UTF formats. This means that this overload set is compatible with text, rope, etc.


PrevUpHomeNext