Function Entry: VLE-REMOVE-FIRST

← Prev | ↑ Chapter | Next → | Index | Symbols

Function Entry: VLE-REMOVE-FIRST

Name

vle-remove-first

Class

BricsCAD VLE Library Function

Syntax

(vle-remove-first item lst)

Arguments and Values

  • item object to remove from lst
  • lst normal
  • Lisp list

Description

removes the first occurrence of 'item' from list 'lst'

Return Values

list 'lst' without first occurrence of 'item', if found;

unchanged list 'lst' if not found

Examples

(vle-remove-first 123 '(1 2
123 4 5 123 6 7 8))

returns '(1 2 4 5 123 6 7 8)

Availability

  • AutoCAD 2026: not documented.
  • BricsCAD V26: documented.
  • Status: BricsCAD-only.

Source Notes