boost::text::line_break_grapheme_view
// In header: <boost/text/line_break.hpp> template<code_point_iter I> struct line_break_grapheme_view : public boost::text::grapheme_view< I > { // construct/copy/destruct line_break_grapheme_view(); line_break_grapheme_view(line_break_result< I >, line_break_result< I >); template<typename GraphemeIter> line_break_grapheme_view(line_break_result< GraphemeIter >, line_break_result< GraphemeIter >); // public member functions bool hard_break() const; };
A range of graphemes that delimit a pair of line break boundaries.
line_break_grapheme_view
public
construct/copy/destructline_break_grapheme_view();
line_break_grapheme_view(line_break_result< I > first, line_break_result< I > last);
template<typename GraphemeIter> line_break_grapheme_view(line_break_result< GraphemeIter > first, line_break_result< GraphemeIter > last);