Function Entry: VLE-CADRASSOC

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

Function Entry: VLE-CADRASSOC

Name

vle-cadrassoc

Class

BricsCAD VLE Library Function

Syntax

(vle-cadrassoc key lst)

Arguments and Values

  • key key value for the dotted pair value to search
  • for
  • lst list of
  • dotted pairs

Description

searches 'lst' list for a dotted-pair with key 'key' and returns the (cadr) of its value;

Return Values

the (cadr) of the value of a dotted pair (key . value), if a dotted pair with key key, if present in the list lst;

NIL if not present

Examples

(vle-cadrassoc 11 '((1 (0 0
0)) (2 (1 1 1)) (11 (1 2 3))))

returns (1 2 3)

Notes

replacement for (cadr (assoc key lst))

Availability

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

Source Notes