Open generic function
Returns an element that has been read back to a positionable stream.
unread-element positionable-stream element => element
An instance of <positionable-stream>.
<object>.
<object>.
io
streams
"Unreads" the last element from positionable-stream. That is, it returns element to the stream so that the next call to read-element will return element. The stream must be a <positionable-stream>.
It is an error to do any of the following:
unread-element to an element that is not the element most recently read from the stream.
unread-element twice in succession.