Remove old FIND
authorDavid Vázquez <davazp@gmail.com>
Mon, 6 May 2013 13:11:24 +0000 (14:11 +0100)
committerDavid Vázquez <davazp@gmail.com>
Mon, 6 May 2013 13:11:24 +0000 (14:11 +0100)
src/boot.lisp

index 78d8d08..a6b08a9 100644 (file)
          (t
           (error "type-error!"))))))
 
-(defun find (item sequence &key (key #'identity) (test #'eql))
-  (do-sequence (x sequence)
-    (when (funcall test (funcall key x) item)
-      (return x))))
+;; (defun find (item sequence &key (key #'identity) (test #'eql))
+;;   (do-sequence (x sequence)
+;;     (when (funcall test (funcall key x) item)
+;;       (return x))))
 
 (defun find-if (predicate sequence &key (key #'identity))
   (do-sequence (x sequence)