PrevUpHomeNext

Function template next_grapheme_break

boost::text::v1::next_grapheme_break

Synopsis

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


template<code_point_iter I, std::sentinel_for< I > S> 
  I next_grapheme_break(I first, S last);

Description

Finds the next word break after first. This will be the first code point after the current word, or last if no next word exists.

Requires:

first is at the beginning of a word.


PrevUpHomeNext