PrevUpHomeNext

Function template utf_transcode

boost::unicode::adaptors::utf_transcode

Synopsis

// In header: <boost/unicode/utf.hpp>


template<typename ValueType, typename Range, typename... T> 
  boost::converted_range< Range, boost::unicode::utf_transcoder< ValueType > > 
  utf_transcode(Range && range, const T & ...);

Description

Lazily evalutes boost::unicode::utf_transcoder<ValueType> by returning a range adapter that wraps the range range and converts it step-by-step as the range is advanced.


PrevUpHomeNext