npt-japanese

% Function STREAM-ERROR-STREAM

UP


Function STREAM-ERROR-STREAM

Function STREAM-ERROR-STREAM

構文

stream-error-stream condition => stream

引数と戻り値

condition - 型stream-errorのコンディション
stream - ストリーム

定義

stream-errorのコンディションの 問題のあるストリームを返却します。

例文

(with-input-from-string (s "(FOO")
  (handler-case (read s)
    (end-of-file (c)
      (format nil "~&End of file on ~S." (stream-error-stream c)))))
"End of file on #<String Stream>."

副作用

なし。

影響

なし。

例外

なし。

参考

stream-error, 9. コンディション

備考

なし。


TOP, Github