PrevUpHomeNext

Function template ends_with

boost::text::v1::ends_with

Synopsis

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


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

Description

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