Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template u8_decode

boost::unicode::u8_decode

Synopsis

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


template<typename Range, typename OutputIterator, typename... T> 
  OutputIterator 
  u8_decode(const Range & range, OutputIterator out, const T &... args);

Description

Eagerly evaluates unicode::u8_decoder until the whole input range range has been treated, copying the result to out and returning the past-the-end output iterator.


PrevUpHomeNext