PrevUpHomeNext

Function template transcode_to_utf16

boost::text::v1::transcode_to_utf16

Synopsis

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


template<std::ranges::input_range R, std::output_iterator< uint16_t > O> 
  transcode_result< std::ranges::borrowed_iterator_t< R >, O > 
  transcode_to_utf16(R && r, O out);

Description

Copies the code points in the range r to out, changing the encoding to UTF-16.


PrevUpHomeNext