utf32
UTF-32 encoding
Next:utf32le


Vocabulary
io.encodings.utf32

Class description
The encoding descriptor for UTF-32, that is, UTF-32 with a byte order mark. This is the most useful for general input and output in UTF-32. Streams can be made which read or write wth this encoding.

See also
An introduction to encodings

See also
utf32le, utf32be

Definition
IN: io.encodings.utf32

SINGLETON: utf32


Methods
USING: io io.encodings io.encodings.utf32
io.encodings.utf32.private kernel ;

M: utf32 <decoder>
drop 4 over stream-read bom>le/be <decoder> ;


USING: io io.encodings io.encodings.utf32
io.encodings.utf32.private kernel ;

M: utf32 <encoder>
drop bom-le over stream-write utf32le <encoder> ;