Last active
December 8, 2016 02:41
-
-
Save zhouqiang-cl/29604458571355f38185e3d7b4ea6dac to your computer and use it in GitHub Desktop.
common lisp 的函数 SXHASH
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 的哈希值 | |
代码 | |
* (sxhash (list 'list "ab")) | |
4270044199745583354 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment