code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(36 lines)
1 '\" t
2 .\" Copyright (c) 2025 Bruce Hill
3 .\" All rights reserved.
4 .\"
5 .TH Text.utf16 3 2025-11-29 "Tomo man-pages"
6 .SH NAME
7 Text.utf16 \- get UTF16 codepoints
8 .SH LIBRARY
9 Tomo Standard Library
10 .SH SYNOPSIS
11 .nf
12 .BI Text.utf16\ :\ func(text:\ Text\ ->\ [Int16])
13 .fi
14 .SH DESCRIPTION
15 Returns a list of Unicode code points for UTF16 encoding of the text.
18 .SH ARGUMENTS
20 .TS
21 allbox;
22 lb lb lbx
23 l l l.
24 Name Type Description
25 text Text The text from which to extract Unicode code points.
26 .TE
27 .SH RETURN
28 A list of 16-bit integer Unicode code points (`[Int16]`).
30 .SH EXAMPLES
31 .EX
32 assert "Γ…ke".utf16() == [197, 107, 101]
33 assert "γ“γ‚“γ«γ‘γ―δΈ–η•Œ".utf16() == [12371, 12435, 12395, 12385, 12399, 19990, 30028]
34 .EE
35 .SH SEE ALSO
36 .BR Tomo-Text (3)