PrevUpHomeNext

Function template in_place_to_title

boost::text::in_place_to_title

Synopsis

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


template<typename NextWordBreakFunc = next_word_break_callable> 
  void in_place_to_title(rope & r, case_language lang = case_language::other, 
                         NextWordBreakFunc next_word_break = NextWordBreakFunc{});

Description

Changes the case of r to title-case, using language-specific handling as indicated by lang.

NextWordBreakFunc must meet the same type requirements as the NextWordBreakFunc template parameter to to_title().


PrevUpHomeNext