Function Entry: VLE-LIST-INTERSECT

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

Function Entry: VLE-LIST-INTERSECT

Name

vle-list-intersect

Class

BricsCAD VLE Library Function

Syntax

(vle-list-intersect lst1 lst2)

Arguments and Values

  • lst1 list to be verified against 'lst2'
  • lst2 list to
  • be verified against 'lst1'

Description

creates a list which contains all those items contained in both input lists

Return Values

a list containing all unique items, which are member in both input lists

Examples

(vle-list-intersect '(1 2 3 4
5) '(3 4 5 6 7))  => '(3 4 5)

(vle-list-intersect '(1 2 3 4) '(4 5 6))
 => '(4)

(vle-list-intersect '(1 2 3 4) '(5 6 7))
 => nil

Availability

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

Source Notes