|
Class: EOFObject
Object
|
+--EOFObject
- Package:
- stx:libbasic
- Category:
- Kernel-Objects
- Version:
- rev:
1.1
date: 2018/12/20 16:01:02
- user: cg
- file: EOFObject.st directory: libbasic
- module: stx stc-classLibrary: libbasic
there is only one instance of this class: EOF,
representing an EOF token.
This is mainly present for stream-pipe processing,
and may be used to signal the end of a stream.
Smalltalk code does not normally use it.
copyrightCOPYRIGHT (c) 2018 by Claus Gittinger
All Rights Reserved
This software is furnished under a license and may be used
only in accordance with the terms of that license and with the
inclusion of the above copyright notice. This software may not
be provided or otherwise made available to, or used by, any
other person. No title to or ownership of the software is
hereby transferred.
class initialization
-
initialize
-
(comment from inherited method)
called only once - initialize signals
instance creation
-
basicNew
-
EOFObject basicNew
EOFObject new
printing & storing
-
printOn: aStream
-
(comment from inherited method)
append a user printed representation of the receiver to aStream.
The format is suitable for a human - not meant to be read back.
The default here is to output the receiver's class name.
BUT: this method is heavily redefined for objects which
can print prettier.
queries
-
isEOF
-
EOF isEOF
|