PrevUpHomeNext

Struct utf_boundary

boost::unicode::utf_boundary

Synopsis

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


struct utf_boundary {
  // types
  typedef char32 input_type;

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

Description

Model of BoundaryChecker, either behaves like u16_boundary or u8_boundary depending on the value type of the input range.

utf_boundary public member functions

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

PrevUpHomeNext