PrevUpHomeNext

Struct template line_break_cp_view

boost::text::line_break_cp_view

Synopsis

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

template<code_point_iter I> 
struct line_break_cp_view : public boost::text::utf32_view< I > {
  // construct/copy/destruct
  line_break_cp_view();
  line_break_cp_view(line_break_result< I >, line_break_result< I >);

  // public member functions
  bool hard_break() const;
};

Description

A range of code points that delimit a pair of line break boundaries.

line_break_cp_view public construct/copy/destruct

  1. line_break_cp_view();
  2. line_break_cp_view(line_break_result< I > first, line_break_result< I > last);

line_break_cp_view public member functions

  1. bool hard_break() const;

    Returns true if the end of *this is a hard line break boundary.


PrevUpHomeNext