Generic Function
t if the stream is positioned at the beginning of a line. stream
stream-start-line-p stream => result
A stream.
A boolean.
stream-start-line-p returnst if stream is positioned at the beginning of a line, andnil otherwise. It is permissible to define a method that always returnsnil. stream-line-column also indicates the beginning of a line, there are cases wherestream-start-line-p can be meaningfully implemented andstream-line-column cannot. For example, for a window using variable-width characters the column number is not very meaningful, whereas the beginning of a line has a clear meaning. stream-line-start-p on classfundamental-character-output-stream usesstream-line-column. Therefore, if this is defined to returnnil, a method should be provided for eitherstream-start-line-p orstream-fresh-line. fundamental-character-output-streamstream-fresh-linestream-line-column