[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Issue: FUNCTION-COMPOSITION
- To: cl-cleanup@sail.stanford.edu
- Subject: Issue: FUNCTION-COMPOSITION
- From: vanroggen%aitg.DEC@decwrl.dec.com
- Date: 12 Sep 88 16:35
This looks OK to me.
Many years ago I suggested we drop -IF-NOT and :TEST-NOT by adding
the proposed COMPLEMENT and supporting the read-macro "#~".
So (FIND-IF-NOT #'ZEROP '(0 0 3)) would be the same as
(FIND-IF (COMPLEMENT #'ZEROP) '(0 0 3)) would be the same as
(FIND-IF #~ZEROP '(0 0 3))