Function Entry: VLE-REMOVE-ALL
← Prev | ↑ Chapter | Next → | Index | Symbols
Function Entry: VLE-REMOVE-ALL
Name
vle-remove-all
Class
BricsCAD VLE Library Function
Syntax
(vle-remove-all item lst)
Arguments and Values
- item object to remove from lst
- lst normal
- Lisp list
Description
removes all occurrences of 'item' from list 'lst' (like vl-remove)
Return Values
list 'lst' without all occurrences of 'item', if found;
unchanged list 'lst' if not found
Examples
(vle-remove 123 '(1 2 123 4 5 123 6 7 8)) returns '(1 2 4 5 6 7 8)
Availability
- AutoCAD 2026: not documented.
- BricsCAD V26: documented.
- Status: BricsCAD-only.
Source Notes
- [vle-remove-all (BricsCAD V26 DevRef)](https://developer.bricsys.com/bricscad/help/en_US/V26/DevRef/source/vleremoveall.htm)
- Status: documented (Phase 3 follow-up: body filled from the BricsCAD V26 per-symbol page on 2026-04-26).