PrevUpHomeNext

Struct grapheme_boundary

boost::unicode::grapheme_boundary

Synopsis

// In header: <boost/unicode/graphemes.hpp>


struct grapheme_boundary {
  // types
  typedef char32 input_type;

  // public member functions
  template<typename Iterator> bool operator()(Iterator, Iterator, Iterator);
};

Description

Model of BoundaryChecker that tells whether a position lies on a grapheme cluster boundary within a range of code points.

grapheme_boundary public member functions

  1. template<typename Iterator> 
      bool operator()(Iterator begin, Iterator end, Iterator pos);

PrevUpHomeNext