Function Entry: VLE-MEMBER
← Prev | ↑ Chapter | Next → | Index | Symbols
Function Entry: VLE-MEMBER
Name
vle-member
Class
BricsCAD VLE Library Function
Syntax
(vle-member item lst)
Arguments and Values
- item expression to search for in 'lst'
- lst normal
- Lisp list
Description
verifies whether list lst contains the expression item.
Return Values
T if the expression 'item' is found in list 'lst';
NIL if not found
Examples
(vle-member 123 '(1 2 3 123 4 5)) returns T (vle-member 456 '(1 2 3 123 4 5)) returns NIL
Notes
replacement for (member item lst)
Availability
- AutoCAD 2026: not documented.
- BricsCAD V26: documented.
- Status: BricsCAD-only.
Source Notes
- [vle-member (BricsCAD V26 DevRef)](https://developer.bricsys.com/bricscad/help/en_US/V26/DevRef/source/vlemember.htm)
- Status: documented (Phase 3 follow-up: body filled from the BricsCAD V26 per-symbol page on 2026-04-26).