(40 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Num.is_between 3 2025-12-31 "Tomo man-pages"6 .SH NAME7 Num.is_between \- check if a number is in a range8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Num.is_between\ :\ func(x:\ Num,\ low:\ Num,\ high:\ Num\ ->\ Bool)13 .fi14 .SH DESCRIPTION15 Determines if a number is between two numbers (inclusive).18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 x Num The integer to be checked.26 low Num One end of the range to check (inclusive).27 high Num The other end of the range to check (inclusive).28 .TE29 .SH RETURN30 `yes` if `a <= x and x <= b` or `b <= x and x <= a`, otherwise `no`32 .SH EXAMPLES33 .EX34 assert (7.5).is_between(1, 10) == yes35 assert (7.5).is_between(10, 1) == yes36 assert (7.5).is_between(100, 200) == no37 assert (7.5).is_between(1, 7.5) == yes38 .EE39 .SH SEE ALSO40 .BR Tomo-Num (3)