PrevUpHomeNext

Function template next_sentence_break

boost::text::v1::next_sentence_break

Synopsis

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


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

Description

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

Requires:

first is at the beginning of a sentence.


PrevUpHomeNext