PrevUpHomeNext

Function template next_paragraph_break

boost::text::v1::next_paragraph_break

Synopsis

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


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

Description

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

Requires:

first is at the beginning of a paragraph.


PrevUpHomeNext