Share

vl-remove (AutoLISP)

Product Documentation
Intermediate

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

Any 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")

Was this information helpful?