Returns a new Output
that appends Unicode code points to the given
string
, using the given output settings
. The returned Output
accepts an unbounded number of code points, remaining permanently in the
cont state, and binds a string
containing the given
string
, and all appended code points.
Returns a new Output
that buffers Unicode code points, using the given
output settings
. The returned Output
accepts an unbounded number of
code points, remaining permanently in the cont state, and binds a string
containing all written code points.
Unicode code point Input/Output/Writer factory.
The
Unicode.stringInput(...)
function returns anInput
that reads the Unicode code points of astring
.The
Unicode.stringOutput(...)}
function returns anOutput
that writes Unicode code points to an internal buffer, and binds astring
containing all written code points.