Function Entry: VLE-APPEND

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

Function Entry: VLE-APPEND

Name

vle-append

Class

BricsCAD VLE Library Function

Syntax

(vle-append lst item)

Arguments and Values

  • lst any valid list
  • item any
  • valid item to be appended

Description

append 'item' to the list 'lst'; 'item' can be any expression; fast replacement for (append lst (list item))

Return Values

the list lst appended by item

Examples

(vle-append '(1 2 3) '(4 5
6)) returns (1 2 3 (4 5 6))

Notes

other than (append) function, the item to be appended does not need to be wrapped into extra (list …) around !

Availability

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

Source Notes