PrevUpHomeNext

Function template to_title

boost::text::v1::to_title

Synopsis

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


template<code_point_iter I, std::sentinel_for< I > S, 
         std::weakly_incrementable O, 
         typename NextWordBreakFunc = next_word_break_callable> 
  case_mapping_result< I, O > 
  to_title(I first, S last, O out, case_language lang = case_language::other, 
           NextWordBreakFunc next_word_break = NextWordBreakFunc{});

Description

Writes the code point sequence comprising the title-case form of [first, last) to out, using language-specific handling as indicated by lang. The normalization of the result is undefined.


PrevUpHomeNext