|
-
January 19th, 2002, 04:47 PM
#1
LISP problem
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)))
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|