We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
if-not
1 parent 48b8b70 commit ee34d9eCopy full SHA for ee34d9e
pkg/corset/stdlib.lisp
@@ -16,6 +16,9 @@
16
(defpurefun (if-not-zero cond then) (if (as-bool cond) then))
17
(defpurefun (if-not-zero cond then else) (if (as-bool cond) then else))
18
19
+(defpurefun (if-not (cond :𝔽@loob) then) (if (as-bool cond) then))
20
+(defpurefun (if-not (cond :𝔽@loob) then else) (if (as-bool cond) then else))
21
+
22
(defpurefun ((as-bool :𝔽@bool :force) x) x)
23
(defpurefun ((is-binary :𝔽@loob :force) e0) (* e0 (- 1 e0)))
24
0 commit comments