Function OPEN-STREAM-P
open-stream-p
stream => generalized-boolean
stream - ストリーム
generalized-boolean - generalized-boolean
streamが開いているストリームのときはtrueを、 それ以外のときはfalseを返却します。
ストリームは、明示的にclose
により閉じられるまでか、 あるいは with-output-to-string
, with-open-file
, with-input-from-string
, with-open-stream
のフォームを退出して 暗黙的に閉じられるまでは開いています。
open-stream-p *standard-input*) => true (
なし。
streamがストリームではないときは、 型type-error
のエラーを発生させるべきです。
なし。
なし。