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
语法 | |
software-type => description | |
software-version => description | |
参数和值 | |
description --- 一个 string 或者 nil | |
描述 | |
software-type 返回系统类型 | |
software-version 返回系统内核版本 |
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
语法 | |
machine-version => description | |
参数和值 | |
description --- 一个 string 或者 nil | |
描述 | |
返回机器硬件的 version | |
代码 | |
* (machine-version) |
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
语法 | |
machine-type => description | |
参数和值 | |
description --- 一个 string 或者 nil | |
描述 | |
返回机器的架构 | |
代码 |
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
语法 | |
machine-instance => description | |
参数和值 | |
description --- 一个 string 或者 nil | |
描述 | |
返回一个 string 来描述运行 common lisp 的电脑硬件(其实就是主机名, 写的这么晦涩) | |
代码 |
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
语法 | |
sxhash object => hash-code | |
参数和值 | |
object --- 一个 object | |
hash-code --- 一个非负的 fixnum | |
描述 | |
sxhash 返回 object 的哈希值 |
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
http://clocc.sourceforge.net/ |
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
语法 | |
special-operator-p symbol => generalized-boolean | |
参数和值 | |
symbol --- 一个symbol | |
generalized-boolean --- 一个 generalized-boolean | |
描述 | |
如果 symbol 是一个special-operator, 返回 true, 否则返回 false |
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
语法 | |
write-sequence sequence stream &key start end => sequence | |
参数和值 | |
sequence --- 一个 sequence | |
stream --- 一个 output stream | |
start, end --- 位置指示符,start 默认为0, end 默认为 nil | |
描述 | |
write-sequence 将 sequence 从start到end的字句中的元素写出到 stream中 |
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
语法 | |
write-byte byte stream => byte | |
参数和值 | |
byte --- 一个正整数, | |
stream --- 一个二进制的 stream | |
描述 | |
write-byte 往 stream 里写入一个字符 byte |
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
语法 | |
typecase keyform {normal-clause}* [otherwise-clause] => result* | |
参数和值 | |
keyform --- 一个 form, 会被求值去产生一个 test-key | |
描述 | |
待补充 | |
代码 |