PrevUpHomeNext

Function template normalize

boost::text::v1::normalize

Synopsis

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


template<nf Normalization, code_point_iter I, std::sentinel_for< I > S, 
         std::output_iterator< uint32_t > O> 
  O normalize(I first, S last, O out);

Description

Writes sequence [first, last) in Unicode normalization form Normalization to out.

See Also:

https://unicode.org/notes/tn5


PrevUpHomeNext