Function Entry: VLE-REMOVE-NTH

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

Function Entry: VLE-REMOVE-NTH

Name

vle-remove-nth

Class

BricsCAD VLE Library Function

Syntax

(vle-remove-nth idx lst)

Arguments and Values

  • idx index of the item to be removed; if negative,
  • or lst contains less items, nothing is removed
  • lst' normal
  • Lisp list

Description

removes the object at index idx from list lst

Return Values

list lst without item at position idx;

if idx is not in the list, the unchanged list lst is returned

Examples

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

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

Notes

index is 0-based

Availability

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

Source Notes