PrevUpHomeNext

Function template contains

boost::text::v1::contains

Synopsis

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


template<utf_range_like R1, utf_range_like R2> 
  bool contains(R1 && r1, R2 && r2);

Description

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