PrevUpHomeNext

Function template stream_safe

boost::text::v1::stream_safe

Synopsis

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


template<code_point_range R> unspecified stream_safe(R && r);

Description

Copies the stream-safe portion of r to the beginning of r, and returns an iterator to the end of the copied range. Note that the type returned may not be I, since the result may be a new iterator that results from reconstituting unpacked iterators out of the input. The type returned will model code_point_iter. The result is returned as a borrowed_iterator_t in C++20 and later.

See Also:

https://unicode.org/reports/tr15/#Stream_Safe_Text_Format


PrevUpHomeNext