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