PrevUpHomeNext

Struct next_word_break_callable

boost::text::next_word_break_callable

Synopsis

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


struct next_word_break_callable {

  // public member functions
  template<typename CPIter, typename Sentinel> 
    CPIter operator()(CPIter, Sentinel) const;
};

Description

A callable type that returns the next possible word break in [first, last). This is the default line break callable type used with the case mapping functions.

next_word_break_callable public member functions

  1. template<typename CPIter, typename Sentinel> 
      CPIter operator()(CPIter it, Sentinel last) const;

PrevUpHomeNext