PrevUpHomeNext

Function template at_hard_line_break

boost::text::v1::at_hard_line_break

Synopsis

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


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

Description

Returns true iff it is at the beginning of a line (considering only hard line breaks), or it == detail::end(range). A hard line break follows any code points with the property BK, CR (not followed by LF), LF, or NL.


PrevUpHomeNext