PrevUpHomeNext

Function template next_hard_line_break

boost::text::v1::next_hard_line_break

Synopsis

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


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

Description

Finds the next hard line break after first. This will be the first code point after the current line, or last if no next line exists. A hard line break follows any code points with the property BK, CR (not followed by LF), LF, or NL.

Requires:

first is at the beginning of a line.


PrevUpHomeNext