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