| Overview | Module | Function | Class | Tea 3.2.4 Reference Documentation © 2009 PDM&FC |
TInput
TInput represent an input stream for
reading strings from a source. TInput is only used
as base class for other classes. It is not possible to create instances
of it.
|
|
TInput close
Closes the input stream represented by the object.
TInput copyTo output [byteCount]
Copies the contents of the stream into an output stream.
write method.
write method that receives a byte
array for argument.
This method works by reading a block from the underlying input stream
and passing it to output by calling its
write method. It repeats this two steps until an end
of file condition is reached in the input stream or until
byteCount bytes are read from the input stream. If
there is no byteCount argument then the copy proceeds
until the end of file on the input stream.
TInput readln
Reads a line from the input stream represented by the object.
| Overview | Module | Function | Class | Tea 3.2.4 Reference Documentation © 2009 PDM&FC |