aboutsummaryrefslogtreecommitdiff
path: root/api/nums.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'api/nums.yaml')
-rw-r--r--api/nums.yaml7
1 files changed, 4 insertions, 3 deletions
diff --git a/api/nums.yaml b/api/nums.yaml
index 4561bb91..28714ab9 100644
--- a/api/nums.yaml
+++ b/api/nums.yaml
@@ -401,7 +401,7 @@ Num.is_between:
return:
type: 'Bool'
description: >
- `yes` if `low <= x and x <= high`, otherwise `no`
+ `yes` if `a <= x and x <= b` or `b <= x and x <= a`, otherwise `no`
args:
x:
type: 'Num'
@@ -410,13 +410,14 @@ Num.is_between:
low:
type: 'Num'
description: >
- The lower bound to check (inclusive).
+ One end of the range to check (inclusive).
high:
type: 'Num'
description: >
- The upper bound to check (inclusive).
+ The other end of the range to check (inclusive).
example: |
assert (7.5).is_between(1, 10) == yes
+ assert (7.5).is_between(10, 1) == yes
assert (7.5).is_between(100, 200) == no
assert (7.5).is_between(1, 7.5) == yes