Function Entry: VLE-LIST-MASSOC

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

Function Entry: VLE-LIST-MASSOC

Name

vle-list-massoc

Class

BricsCAD VLE Library Function

Syntax

(vle-list-massoc key lst)

Arguments and Values

  • key key to be used to parse the assoc list
  • lst assoc
  • list, may contain multiple items with same key

Description

returns a list of all values using same 'key' in assoc-list 'lst'

Return Values

a list containing all cdr values of assoc items with key 'key';

the list may contain multiple assoc items with key 'key';

returned list contains all values in original sequence

Examples

(setq lst '((1 . "a")(2 .
"b")(1 . 11)(2 . 22)))

(vle-list-massoc 1 lst) => ("a"
11)

(vle-list-massoc 2 lst) => ("b" 22)

Availability

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

Source Notes