PrevUpHomeNext

Function template find_last_of

boost::text::v1::find_last_of

Synopsis

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


template<code_point_iter I1, code_point_iter I2> 
  I1 find_last_of(I1 first1, I1 last1, I2 first2, I2 last2);

Description

A Unicode-friendly version of std::string::find_last_of(). 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