A generic function used by write-byte to write an integer to a binary stream.
stream
stream-write-byte stream integer => result
stream⇩ |
A stream. |
integer⇩ |
An integer. |
result |
An integer. |
The generic function stream-write-byte
is used by write-byte, and writes the integer integer to the binary stream specified by stream.
A method must be implemented for all binary subclasses of buffered-stream that handle output. A typical implementation will convert the integer to a character using code-char and call stream-write-char.
A method should be defined for all subclasses of fundamental-binary-output-stream.
buffered-stream
fundamental-binary-output-stream
fundamental-binary-stream
stream-write-char
LispWorks® User Guide and Reference Manual - 01 Dec 2021 19:31:01