PrevUpHomeNext

Function template prev_paragraph_break

boost::text::v1::prev_paragraph_break

Synopsis

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


template<code_point_range R> 
  std::ranges::borrowed_iterator_t< R > 
  prev_paragraph_break(R && r, std::ranges::iterator_t< R > it);

Description

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

Returns a grapheme_iterator to the nearest paragraph break at or before before it. If it == r.begin(), that is returned. Otherwise, the first grapheme of the paragraph that it is within is returned (even if it is already at the first grapheme of a paragraph).


PrevUpHomeNext