PrevUpHomeNext

Struct cp_break

boost::text::cp_break

Synopsis

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


struct cp_break {

  // public member functions
  template<code_point_iter I, std::sentinel_for< I > S> 
    I operator()(I, I, S) const;
};

Description

A callable type that detects a text boundary at every code point (a no-op). This is suitable for use as the break function used in the collation search API.

cp_break public member functions

  1. template<code_point_iter I, std::sentinel_for< I > S> 
      I operator()(I first, I it, S last) const;

PrevUpHomeNext