TEST-NOT-IF-NOTIF-NOT functions are functionally unnecessary.
The :TEST-NOT keywords are not only functionally unnecessary but also problematic because it's not clear what to do when both :TEST and :TEST-NOT are provided.
Many people think Common Lisp is more `bloated' than it needs to be and these aspects of the language are commonly cited specific examples.
IF-NOT functions (named above) from Common Lisp.
Deprecate the :TEST-NOT keyword from the Common Lisp functions which currently provide them (named above).
The removal of :TEST-NOT also makes the language easier to explain.
Some symbols would disappear from the LISP package but could still be offered in proprietary packages if deemed important enough.
Implementations could compatibly retain the :TEST-NOT keywords for an interim period.
Those rewrites, which are already fairly simple, would be even more simple if some form of the FUNCTION-COMPOSITION issue is voted in -- in particular, the COMPLEMENT function which it proposes would help enormously in this regard.
:TEST-NOT keywords would make the simple implementation of the functions that used to have them slightly faster, but the resulting code of the inner loop is likely to be much slower.
Some of those objections might be tempered if some additional changes were made to Common Lisp: adding a COMPLEMENT function, or if there were a strategy to declare some parts of the language "obsolete". Since these conditions haven't been done, their objections stand.
Steele noted that one main reservation to FLUSH-ALL is that he uses REMOVE-IF-NOT much more than REMOVE-IF.
This issue is related to FUNCTION-COMPOSITION, but is not dependent on it. Some support the combination of FLUSH-ALL and the NEW-FUNCTIONS part of FUNCTION-COMPOSITION in spite of the incompatible change because of the aesthetic appeal.
Some people expressed their intention to vote for FLUSH-ALL only if FUNCTION-COMPOSITION:NEW-FUNCTIONS.
It was noted that and
adding a #~ readmacro such that
(FIND-IF-NOT #'ZEROP '(0 0 3))
== (FIND-IF (COMPLEMENT #'ZEROP) '(0 0 3))
== (FIND-IF #~ZEROP '(0 0 3))
The modification of these functions is moot for those who prefer to use extended LOOP macro/iteration constructs in lieu of the sequence functions.
Several alternative names for REMOVE-IF-NOT were suggested: KEEP-IF, ABSTRACT, FILTER. We did not pursue these suggestions.