lispdoc - results for nsubstitute |
(nsubstitute new old sequence &rest args &key from-end (test #'eql) (test-not nil) (end nil) (count nil) (key nil) (start 0)) | Function: Return a sequence of the same kind as SEQUENCE with the same elements except that all elements equal to OLD 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 PCL - destructive operations PCL - trees | |
(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 | |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |