开发者

Using Common Lisp CLOS objects as keys in a hashtable?

开发者 https://www.devze.com 2023-03-18 08:50 出处:网络
I\'d like to use Common Lisp CLOS objects as keys in a hashtable.I thought it would be as simple as this:

I'd like to use Common Lisp CLOS objects as keys in a hashtable. I thought it would be as simple as this:

(defclass my-class () ((a :accessor a :initarg a)))

(defun my-class= (my-instance-1 my-instance-2)
(equal (a my-instance-1) (a my-instance-2)))

(defparameter my-hash-table (make-hash-table :test #'my-class=))

Checking out the Common Lis开发者_如何学编程p Hyperspec, it seems I can only use eq, eql, equal, or equalp to test equality.

Is there any way I can do this? Or is this just a really stoopid thing to do, and that's why the standard doesn't allow it?


Common Lisp standard does not provide any mechanism to provide additional test functions for hash-tables (beyond standard ones). You have 2 options:

  1. Use genhash genhash which is portable hash-table implementation (not compatible with built-in ones)
  2. Use non-standard extensions:
  3. SBCL has sb-ext:define-hash-table-test function (documentation)
  4. Clisp has a similar function ext:define-hash-table-test (documentation)
  5. Allegro and Lispworks accept non-standard values for :test argument and has :hash-function argument (Allegro, Lispworks).
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号