(43 lines)
1 '\" t2 .\" Copyright (c) 2026 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Text.from_codepoint_names 3 2026-03-08 "Tomo man-pages"6 .SH NAME7 Text.from_codepoint_names \- convert list of unicode codepoint names to text8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Text.from_codepoint_names\ :\ func(codepoint_names:\ [Text]\ ->\ [Text])13 .fi14 .SH DESCRIPTION15 Returns text that has the given codepoint names (according to the Unicode specification) as its codepoints.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 codepoint_names [Text] The names of each codepoint in the desired text (case-insentive).26 .TE27 .SH RETURN28 A new text with the specified codepoints after normalization has been applied. Any invalid names are ignored.30 .SH NOTES31 The text will be normalized, so the resulting text's codepoints may not exactly match the input codepoints.33 .SH EXAMPLES34 .EX35 text := Text.from_codepoint_names([36 "LATIN CAPITAL LETTER A WITH RING ABOVE",37 "LATIN SMALL LETTER K",38 "LATIN SMALL LETTER E",39 ])40 assert text == "Ã…ke"41 .EE42 .SH SEE ALSO43 .BR Tomo-Text (3)