(38 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Text.from_utf8 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Text.from_utf8 \- convert UTF8 byte list to text8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Text.from_utf8\ :\ func(bytes:\ [Byte]\ ->\ [Text])13 .fi14 .SH DESCRIPTION15 Returns text that has been constructed from the given UTF8 bytes.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 bytes [Byte] The UTF-8 bytes of the desired text.26 .TE27 .SH RETURN28 A new text based on the input UTF8 bytes after normalization has been applied.30 .SH NOTES31 The text will be normalized, so the resulting text's UTF8 bytes may not exactly match the input.33 .SH EXAMPLES34 .EX35 assert Text.from_utf8([195, 133, 107, 101]) == "Ã…ke"36 .EE37 .SH SEE ALSO38 .BR Tomo-Text (3)