Created
December 22, 2016 08:09
-
-
Save zhouqiang-cl/8113aae7a6d73e99c5ac145073b75a60 to your computer and use it in GitHub Desktop.
common lisp 的函数 OPEN-STREAM-P
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
open-stream-p stream => generalized-boolean | |
参数和值 | |
stream --- 一个 stream | |
generalized-boolean --- 一个 generalized-boolean | |
描述 | |
如果 stream 是一个 open stream, 返回 true, 否则返回 false | |
代码 | |
* (open-stream-p *standard-input*) | |
T |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment