Created
February 8, 2015 00:04
-
-
Save hyotang666/6fbda1d0ec1c8f0ec756 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun find-all(item seq &rest args &key(test #'eql)test-not &allow-other-keys) | |
(apply #'remove item seq :test(when test-not test-not) | |
:test-not(unless test-not test)args)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment