Removes elements from a list
(vl-remove element-to-remove list)
Arguments
-
element-to-remove
-
The value of the element to be removed; may be any LISP data type.
-
list
-
Return Values
The list with all elements except those equal to element-to-remove.
Examples
(vl-remove pi (list pi t 0 "abc"))
(T 0 "abc")