vl-remove


(vl-remove item list)

This function removes the specified item from the list.

Arguments

item  (any Lisp item or expression) the item to be removed from list
list  (list) the list to remove item from

Return

(list) returns the resulting list

Example

(vl-remove 1 '(1 1 2 3 4 1 1))
(2 3 4)

Remarks

all occurrences of item are removed from list



©  Bricsys NV. All rights reserved.