PrevUpHomeNext

Function template is_title

boost::text::v1::is_title

Synopsis

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


template<code_point_iter I, std::sentinel_for< I > S, 
         typename NextWordBreakFunc = next_word_break_callable> 
  bool is_title(I first, S last, 
                NextWordBreakFunc next_word_break = NextWordBreakFunc{});

Description

Returns true if no code point in [first, last) would change in a call to to_title(), and false otherwise.


PrevUpHomeNext