[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Issue: FUNCTION-COMPOSITION



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))