stepha301
January 19th, 2002, 03:47 PM
here is a piece of code. can anyone explain me what this is doing ?
thx
------------
(defun find-all (item sequence &rest keyword-args &key (test #'eql) test-not &allow-other-keys)
(if test-not
(apply #'remove item sequence
:test-not (complement test-not) keyword-args)
(apply #'remove item sequence
:test (complement test) keyword-args)))
thx
------------
(defun find-all (item sequence &rest keyword-args &key (test #'eql) test-not &allow-other-keys)
(if test-not
(apply #'remove item sequence
:test-not (complement test-not) keyword-args)
(apply #'remove item sequence
:test (complement test) keyword-args)))