Common Lisp 是否有类似 java 的 Set Interface/implementing classes 的东西?

2022-01-17 00:00:00 set lisp java sbcl

I need something like this, a collection of elements which contains no duplicates of any element. Does Common Lisp, specifically SBCL, have any thing like this?

解决方案

Look at cl-containers. There is a set-container class.

相关文章