(39 lines)
1 '\" t2 .\" Copyright (c) 2026 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Num.percent 3 2026-03-08 "Tomo man-pages"6 .SH NAME7 Num.percent \- format as a percentage8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Num.percent\ :\ func(n:\ Num,\ precision:\ Num\ =\ 0.01\ ->\ Text)13 .fi14 .SH DESCRIPTION15 Convert a number into a percentage text with a percent sign.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 n Num The number to be converted to a percent. -26 precision Num Round the percentage to this precision level. 0.0127 .TE28 .SH RETURN29 A text representation of the number as a percentage with a percent sign.31 .SH EXAMPLES32 .EX33 assert (0.5).percent() == "50%"34 assert (1./3.).percent(2) == "34%"35 assert (1./3.).percent(precision=0.0001) == "33.3333%"36 assert (1./3.).percent(precision=10.) == "30%"37 .EE38 .SH SEE ALSO39 .BR Tomo-Num (3)