PrevUpHomeNext

Function template next_allowed_line_break

boost::text::v1::next_allowed_line_break

Synopsis

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


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

Description

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

Requires:

first is at the beginning of a line.


PrevUpHomeNext