]> gitweb.factorcode.org Git - factor.git/blob - core/io/encodings/utf16/utf16-docs.factor
6b046f3e69b506a82e2740be701851477308d05e
[factor.git] / core / io / encodings / utf16 / utf16-docs.factor
1 ! Copyright (C) 2008 Daniel Ehrenberg
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax ;
4 IN: io.encodings.utf16
5
6 ARTICLE: "io.encodings.utf16" "UTF-16 encoding"
7 "The UTF-16 encoding is a variable-width encoding. Unicode code points are encoded as 2 or 4 byte sequences. There are three encoding descriptor classes for working with UTF-16, depending on endianness or the presence of a BOM:"
8 { $subsections
9     utf16
10     utf16le
11     utf16be
12 } ;
13
14 ABOUT: "io.encodings.utf16"
15
16 HELP: utf16le
17 { $class-description "The encoding descriptor for UTF-16LE, that is, UTF-16 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: utf16be
21 { $class-description "The encoding descriptor for UTF-16BE, that is, UTF-16 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: utf16
25 { $class-description "The encoding descriptor for UTF-16, that is, UTF-16 with a byte order mark. This is the most useful for general input and output in UTF-16. Streams can be made which read or write wth this encoding." }
26 { $see-also "encodings-introduction" } ;
27
28 { utf16 utf16le utf16be } related-words