]> gitweb.factorcode.org Git - factor.git/blob - basis/io/encodings/utf32/utf32-docs.factor
factor: trim using lists
[factor.git] / basis / io / encodings / utf32 / utf32-docs.factor
1 ! Copyright (C) 2009 Daniel Ehrenberg
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax ;
4 IN: io.encodings.utf32
5
6 ARTICLE: "io.encodings.utf32" "UTF-32 encoding"
7 "The UTF-32 encoding is a fixed-width encoding. Unicode code points are encoded as 4 byte sequences. There are three encoding descriptor classes for working with UTF-32, depending on endianness or the presence of a BOM:"
8 { $subsections
9     utf32
10     utf32le
11     utf32be
12 } ;
13
14 ABOUT: "io.encodings.utf32"
15
16 HELP: utf32le
17 { $class-description "The encoding descriptor for UTF-32LE, that is, UTF-32 in little endian, without a byte order mark. Streams can be made which read or write wth this encoding." }
18 { $see-also "encodings-introduction" } ;
19
20 HELP: utf32be
21 { $class-description "The encoding descriptor for UTF-32BE, that is, UTF-32 in big endian, without a byte order mark. Streams can be made which read or write wth this encoding." }
22 { $see-also "encodings-introduction" } ;
23
24 HELP: utf32
25 { $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." }
26 { $see-also "encodings-introduction" } ;
27
28 { utf32 utf32le utf32be } related-words