aboutsummaryrefslogtreecommitdiff
path: root/src/lisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-10-27 02:46:10 +0000
committerdos-reis <gdr@axiomatics.org>2011-10-27 02:46:10 +0000
commit6a3913853aeb542f155a1164eb48aba1724f17f7 (patch)
tree001de8bcc0e076ba25f5da76b2b264d0598c7e6a /src/lisp
parent4d4f05f71ab532ac95570bef18da5098965db723 (diff)
downloadopen-axiom-6a3913853aeb542f155a1164eb48aba1724f17f7.tar.gz
* algebra/stream.spad.pamphlet (Stream): Tidy accessors.
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")