PrevUpHomeNext

Function template to_upper

boost::text::v1::to_upper

Synopsis

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


template<code_point_range R, std::weakly_incrementable O> 
  case_mapping_result< std::ranges::borrowed_iterator_t< R >, O > 
  to_upper(R && r, O out, case_language lang = case_language::other);

Description

Writes code point sequence comprising the the upper-case form of r to out, using language-specific handling as indicated by lang. The normalization of the result is undefined.


PrevUpHomeNext