code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(40 lines)
1 '\" t
2 .\" Copyright (c) 2026 Bruce Hill
3 .\" All rights reserved.
4 .\"
5 .TH Int.is_between 3 2026-01-19 "Tomo man-pages"
6 .SH NAME
7 Int.is_between \- test if an int is in a range
8 .SH LIBRARY
9 Tomo Standard Library
10 .SH SYNOPSIS
11 .nf
12 .BI Int.is_between\ :\ func(x:\ Int,\ a:\ Int,\ b:\ Int\ ->\ Bool)
13 .fi
14 .SH DESCRIPTION
15 Determines if an integer is between two numbers (inclusive).
18 .SH ARGUMENTS
20 .TS
21 allbox;
22 lb lb lbx
23 l l l.
24 Name Type Description
25 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 .TE
29 .SH RETURN
30 `yes` if `a <= x and x <= b` or `a >= x and x >= b`, otherwise `no`
32 .SH EXAMPLES
33 .EX
34 assert 7.is_between(1, 10) == yes
35 assert 7.is_between(10, 1) == yes
36 assert 7.is_between(100, 200) == no
37 assert 7.is_between(1, 7) == yes
38 .EE
39 .SH SEE ALSO
40 .BR Tomo-Int (3)