blob: 320af3f6e6c551c04914b6fe5c8a7b56dedc42bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
'\" t
.\" Copyright (c) 2025 Bruce Hill
.\" All rights reserved.
.\"
.TH Text.codepoint_names 3 2025-11-29 "Tomo man-pages"
.SH NAME
Text.codepoint_names \- get unicode codepoint names
.SH LIBRARY
Tomo Standard Library
.SH SYNOPSIS
.nf
.BI Text.codepoint_names\ :\ func(text:\ Text\ ->\ [Text])
.fi
.SH DESCRIPTION
Returns a list of the names of each codepoint in the text.
.SH ARGUMENTS
.TS
allbox;
lb lb lbx
l l l.
Name Type Description
text Text The text from which to extract codepoint names.
.TE
.SH RETURN
A list of codepoint names (`[Text]`).
.SH EXAMPLES
.EX
assert "Amélie".codepoint_names() == [
"LATIN CAPITAL LETTER A",
"LATIN SMALL LETTER M",
"LATIN SMALL LETTER E WITH ACUTE",
"LATIN SMALL LETTER L",
"LATIN SMALL LETTER I",
"LATIN SMALL LETTER E",
]
.EE
.SH SEE ALSO
.BR Tomo-Text (3)
|