Function Entry: VLE-LIST-UNION
← Prev | ↑ Chapter | Next → | Index | Symbols
Function Entry: VLE-LIST-UNION
Name
vle-list-union
Class
BricsCAD VLE Library Function
Syntax
(vle-list-union lst1 lst2)
Arguments and Values
- lst1 first list to merge into result list
- lst2 second
- list to merge into result list
Description
merges 2 lists into 1 result list; all duplicates are removed
Return Values
a list containing all unique items of 'lst1' and 'lst2';
result list does not contain any duplicates
Examples
(vle-list-union '(1 2 3 4) '(7 8 9)) => '(1 2 3 4 7 8 9) (vle-list-union '(1 2 3 4) '(4 5 6)) => '(1 2 3 4 5 6) (vle-list-union '(1 2 3 3) '(4 4 5)) => '(1 2 3 4 5)
Availability
- AutoCAD 2026: not documented.
- BricsCAD V26: documented.
- Status: BricsCAD-only.
Source Notes
- [vle-list-union (BricsCAD V26 DevRef)](https://developer.bricsys.com/bricscad/help/en_US/V26/DevRef/source/vlelistunion.htm)
- Status: documented (Phase 3 follow-up: body filled from the BricsCAD V26 per-symbol page on 2026-04-26).