summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-12-13 06:28:50 -0800
committerKaz Kylheku <kaz@kylheku.com>2018-12-13 06:28:50 -0800
commitc547316cbfa514fd793a147c6f2e5aa5d5e0e283 (patch)
treeebcb101d2265a8e4bf411403c67f86fc61ffe703 /arith.c
parent526a9c89d0c74788adbc1492e613d174f03fb268 (diff)
downloadtxr-c547316cbfa514fd793a147c6f2e5aa5d5e0e283.tar.gz
txr-c547316cbfa514fd793a147c6f2e5aa5d5e0e283.tar.bz2
txr-c547316cbfa514fd793a147c6f2e5aa5d5e0e283.zip
nzerop: new function.
* arith.c (nzerop): New function. * eval.c (eval_init): Register nzerop intrinsic. * lib.h (nzerop): Declared. * txr.1: Documented.
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/arith.c b/arith.c
index 084d8cf5..67fa75c2 100644
--- a/arith.c
+++ b/arith.c
@@ -1557,6 +1557,28 @@ val zerop(val num)
}
}
+val nzerop(val num)
+{
+ val self = lit("nzerop");
+
+ if (num == zero)
+ return nil;
+
+ switch (type(num)) {
+ case NUM:
+ case BGNUM:
+ return t;
+ case FLNUM:
+ return tnil(c_flo(num, self) != 0.0);
+ case CHR:
+ return tnil(num != chr(0));
+ case RNG:
+ return tnil(nzerop(from(num)) || nzerop(to(num)));
+ default:
+ not_number(self, num);
+ }
+}
+
val plusp(val num)
{
val self = lit("plusp");