aboutsummaryrefslogtreecommitdiff
path: root/src/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lisp')
-rw-r--r--src/lisp/core.lisp.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lisp/core.lisp.in b/src/lisp/core.lisp.in
index adcf7233..0b939ed6 100644
--- a/src/lisp/core.lisp.in
+++ b/src/lisp/core.lisp.in
@@ -157,6 +157,8 @@
"%basicSystemIsComplete"
"%algebraSystemIsComplete"
"%nothing"
+ "%nullStream"
+ "%nonNullStream"
"%escapeSequenceAverseHost?"
"%defaultReadAndLoadSettings"
@@ -454,6 +456,12 @@
;; This is also the bottom value of the Maybe domain.
(defconstant |%nothing| :|OpenAxiomNoValue|)
+;; Token expression to indicate the end of a stream of values.
+(defconstant |%nullStream| :|OpenAxiomNullStream|)
+
+;; Token expression to indicate there are move to come in a stream of values.
+(defconstant |%nonNullStream| :|OpenAxiomNonNullStream|)
+
;; Base name of the native core runtime library
(defconstant |$CoreLibName|
"open-axiom-core")