(40 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Byte.is_between 3 2025-12-31 "Tomo man-pages"6 .SH NAME7 Byte.is_between \- test if inside a range8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Byte.is_between\ :\ func(x:\ Byte,\ low:\ Byte,\ high:\ Byte\ ->\ Bool)13 .fi14 .SH DESCRIPTION15 Determines if an integer is between two numbers (inclusive).18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx23 l l l.24 Name Type Description25 x Byte The integer to be checked.26 low Byte One end of the range to check (inclusive);27 high Byte 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 Byte(7).is_between(1, 10) == yes35 assert Byte(7).is_between(10, 1) == yes36 assert Byte(7).is_between(100, 200) == no37 assert Byte(7).is_between(1, 7) == yes38 .EE39 .SH SEE ALSO40 .BR Tomo-Byte (3)