aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/math/number/rev.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/math/number/rev.lux10
1 files changed, 4 insertions, 6 deletions
diff --git a/stdlib/source/library/lux/math/number/rev.lux b/stdlib/source/library/lux/math/number/rev.lux
index 8b5e28996..f00cc8dd7 100644
--- a/stdlib/source/library/lux/math/number/rev.lux
+++ b/stdlib/source/library/lux/math/number/rev.lux
@@ -53,9 +53,8 @@
(def: .public (<= reference sample)
(-> Rev Rev Bit)
- (if (//nat.< (.nat reference) (.nat sample))
- true
- ("lux i64 =" reference sample)))
+ (or (//nat.< (.nat reference) (.nat sample))
+ ("lux i64 =" reference sample)))
(def: .public (> reference sample)
(-> Rev Rev Bit)
@@ -63,9 +62,8 @@
(def: .public (>= reference sample)
(-> Rev Rev Bit)
- (if (..< sample reference)
- true
- ("lux i64 =" reference sample)))
+ (or (..< sample reference)
+ ("lux i64 =" reference sample)))
(template [<name> <test>]
[(def: .public (<name> left right)