alist

Table of Contents

list that looks like

'(("a" . 1)
  ("b" . 2))

access:

(setq foo
'(("a" . 1)
  ("b" . 2))
)

(assoc "a" foo) ;;=> ("a" . 1)

Backlinks

Author: Linfeng He

Created: 2024-04-05 Fri 02:24