Skip to content

Instantly share code, notes, and snippets.

@hyotang666
Created February 8, 2015 00:04
Show Gist options
  • Save hyotang666/6fbda1d0ec1c8f0ec756 to your computer and use it in GitHub Desktop.
Save hyotang666/6fbda1d0ec1c8f0ec756 to your computer and use it in GitHub Desktop.
(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