X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Flist.lisp;h=a41d821220c39f2afdd5911a59f65766b8010d0b;hb=c6d504316367c4709e066f58d5593216b150ee5e;hp=96a359480abada1bf41dbbfe73fd02e5f4ec7890;hpb=8f59cd56540bb3699c80c141f30968cb0126ce04;p=jscl.git diff --git a/src/list.lisp b/src/list.lisp index 96a3594..a41d821 100644 --- a/src/list.lisp +++ b/src/list.lisp @@ -200,9 +200,10 @@ (and (consp (cdr x)) (cons (car x) (butlast (cdr x))))) -(defun member (x list &key (key #'identity) (test #'eql)) +(defun member (x list &key key (test #'eql testp) (test-not #'eql test-not-p)) (while list - (when (funcall test x (funcall key (car list))) + (when (satisfies-test-p x (car list) :key key :test test :testp testp + :test-not test-not :test-not-p test-not-p) (return list)) (setq list (cdr list))))