clisp : remove from list of list [duplicate]
(remove '(1 2) '((1 2) (1 3)))
doesn't remove '(1 2)
from list in common lisp. (I think it uses eq
and not equal
).
Do we have any other alternative to delete element from list of lists in common lisp?
(remove '(1 2) '((1 2) (1 3)) :test #'equal)
精彩评论