PrevUpHomeNext

Function template prev_allowed_line_break

boost::text::v1::prev_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 > prev_allowed_line_break(I first, I it, S last);

Description

Finds the nearest line break opportunity at or before before it. If it == first, that is returned. Otherwise, the first code point of the line that it is within is returned (even if it is already at the first code point of a line).


PrevUpHomeNext