(35 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Text.utf32 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Text.utf32 \- get UTF32 codepoints8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Text.utf32\ :\ func(text:\ Text\ ->\ [Int32])13 .fi14 .SH DESCRIPTION15 Returns a list of Unicode code points for UTF32 encoding of the text.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 text Text The text from which to extract Unicode code points.26 .TE27 .SH RETURN28 A list of 32-bit integer Unicode code points (`[Int32]`).30 .SH EXAMPLES31 .EX32 assert "AmΓ©lie".utf32() == [65, 109, 233, 108, 105, 101]33 .EE34 .SH SEE ALSO35 .BR Tomo-Text (3)