vle-list-diff
(vle-list-diff lst1
lst2)
returns the "list difference" of 2 lists,
containing all items, which are member of either 'lst1' or 'lst2',
but not member of both lists
Arguments |
lst1 list to be compared against 'lst2' |
Return |
a list containing all items which are unique for their owner lists; in other words, which are not member of both lists |
Example |
(vle-list-diff '(1 2 3 3 4)
'(3 4 5 6)) => '(1 2 5 6) |
Alias |
|
Remarks |
|
© Bricsys NV. All rights reserved. |