(40 lines)
1 '\" t2 .\" Copyright (c) 2026 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Int.is_between 3 2026-01-19 "Tomo man-pages"6 .SH NAME7 Int.is_between \- test if an int is in a range8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Int.is_between\ :\ func(x:\ Int,\ a:\ Int,\ b:\ Int\ ->\ 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 Int The integer to be checked.26 a Int One end of the range to check (inclusive).27 b Int The other end of the range to check (inclusive).28 .TE29 .SH RETURN30 `yes` if `a <= x and x <= b` or `a >= x and x >= b`, otherwise `no`32 .SH EXAMPLES33 .EX34 assert 7.is_between(1, 10) == yes35 assert 7.is_between(10, 1) == yes36 assert 7.is_between(100, 200) == no37 assert 7.is_between(1, 7) == yes38 .EE39 .SH SEE ALSO40 .BR Tomo-Int (3)