Skip to content

Instantly share code, notes, and snippets.

@zhouqiang-cl
Created November 29, 2016 15:11
Show Gist options
  • Save zhouqiang-cl/79e05252c42ce2e0437f804a3da7da43 to your computer and use it in GitHub Desktop.
Save zhouqiang-cl/79e05252c42ce2e0437f804a3da7da43 to your computer and use it in GitHub Desktop.
common lisp 的hash table
概念
hash table 能给一个指定的 key 关联一个值, 如果尝试给这个 key 关联第二个值, 第二个值会覆盖第一次的值
类别
hash table 有四种类别
1. key 用 eq 比较
2. key 用 eql 比较
3. key 用 equal 比较
4. key 用 equalp 比较
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment