diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-03-03 20:48:20 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-03-03 20:48:20 -0800 |
commit | 66bcec2c491445a76b3ef63c53ed982b896cef00 (patch) | |
tree | 0fe8fec1fdc486c449284adbca0bcb7abc3d268f /txr.1 | |
parent | 104606a1450c2d03bfd3bbaf6bc0c37cff3fc85f (diff) | |
download | txr-66bcec2c491445a76b3ef63c53ed982b896cef00.tar.gz txr-66bcec2c491445a76b3ef63c53ed982b896cef00.tar.bz2 txr-66bcec2c491445a76b3ef63c53ed982b896cef00.zip |
* eval.c (eval_init): Expose remq, remql and remqual.
* txr.1: Documented.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -6355,6 +6355,24 @@ If no such element found, nil is returned. Otherwise, that tail of the list is returned whose first element is the matching object. +.SS Functions remq, remql and remqual + +Syntax: + + (remq <object> <list>) + (remql <object> <list>) + (remqual <object> <list>) + +.TP +Description + +The remq, remql and remqual functions produce a new list based on <list>, +removing the the items which are eq, eql or equal to <object>. + +The input <list> is unmodified, but the returned list may share substructure +with it. If no items are removed, it is possible that the return value +is <list> itself. + .SS Function tree-find .TP |