(39 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Text.right_pad 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Text.right_pad \- right-pad text8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Text.right_pad\ :\ func(text:\ Text,\ width:\ Int,\ pad:\ Text\ =\ "\ ",\ language:\ Text\ =\ "C"\ ->\ Text)13 .fi14 .SH DESCRIPTION15 Pad some text on the right side so it reaches a target width.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 text Text The text to pad. -26 width Int The target width. -27 pad Text The padding text. "\ "28 language Text The ISO 639 language code for which character width to use. "C"29 .TE30 .SH RETURN31 Text with length at least `width`, with extra padding on the right as needed. If `pad` has length greater than 1, it may be partially repeated to reach the exact desired length.33 .SH EXAMPLES34 .EX35 assert "x".right_pad(5) == "x "36 assert "x".right_pad(5, "ABC") == "xABCA"37 .EE38 .SH SEE ALSO39 .BR Tomo-Text (3)