remdq
remdq(g_xl_arg) =>l_result
Description
Removes all top-level elements that are identical to a SKILL object using eq from a list. This is a destructive removal, which means that the original list itself is modified. Therefore, any other reference to that list will also see the changes.
remdq uses eq instead of equal for comparison.
Arguments
Value Returned
|
Returns l_arg modified so that all top-level elements |
Examples
y = '(a b x d f x g)
=> (a b x d f x g)
remdq('x y)
=> (a b d f g)
y
=> (a b d f g)
Related Topics
Return to top