(39 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Text.at 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Text.at \- get a letter8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Text.at\ :\ func(text:\ Text,\ index:\ Int\ ->\ Text)13 .fi14 .SH DESCRIPTION15 Get the graphical cluster at a given index. This is similar to `str[i]` with ASCII text, but has more correct behavior for unicode text.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 text Text The text from which to get a cluster.26 index Int The index of the graphical cluster (1-indexed).27 .TE28 .SH RETURN29 A `Text` with the single graphical cluster at the given index.31 .SH NOTES32 Negative indices are counted from the back of the text, so `-1` means the last cluster, `-2` means the second-to-last, and so on.34 .SH EXAMPLES35 .EX36 assert "AmΓ©lie".at(3) == "Γ©"37 .EE38 .SH SEE ALSO39 .BR Tomo-Text (3)