(nsubstitute-if new predicate sequence &rest args &key from-end (start 0)
(end nil) (count nil) (key nil)) | Function: Return a sequence of the same kind as SEQUENCE with the same elements except that all elements satisfying PREDICATE are replaced with NEW. SEQUENCE may be destructively modified.
|
| | Mentioned in:
CLtL2 - 14.3. Modifying Sequences
HyperSpec - Function SUBSTITUTE, SUBSTITUTE-IF, SUBSTITUTE-IF-NOT, NSUBSTITUTE, NSUBSTITUTE-IF, NSUBSTITUTE-IF-NOT
|
| | |
(nsubstitute-if-not new predicate sequence &rest args &key from-end (start 0)
(end nil) (count nil) (key nil)) | Function: Return a sequence of the same kind as SEQUENCE with the same elements except that all elements not satisfying PREDICATE are replaced with NEW. SEQUENCE may be destructively modified.
|
| | Mentioned in:
HyperSpec - Function SUBSTITUTE, SUBSTITUTE-IF, SUBSTITUTE-IF-NOT, NSUBSTITUTE, NSUBSTITUTE-IF, NSUBSTITUTE-IF-NOT
|
| | |