assoc -- r7rs Definition
§

Kind
§

procedure;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(assq obj alist)
(assv obj alist)
(assoc obj alist)
(assoc obj alist compare)

Domain: It is an error if alist (for association list) is not a list of pairs.

These procedures find the first pair in alist whose car field is obj, and returns that pair. If no pair in alist has obj as its car, then #f (not the empty list) is returned. The assq procedure uses eq? to compare obj with the car fields of the pairs in alist, while assv uses eqv? and assoc uses compare if given and equal? otherwise.

(define e '((a 1) (b 2) (c 3)))
(assq 'a e)               ===>  (a 1)
(assq 'b e)               ===>  (b 2)
(assq 'd e)               ===>  #f
(assq (list 'a) '(((a)) ((b)) ((c))))
                          ===>  #f
(assoc (list 'a) '(((a)) ((b)) ((c))))
                          ===>  ((a))
(assoc 2.0 '((1 1) (2 4) (3 9)) =)
                          ===> (2 4)
(assq 5 '((2 3) (5 7) (11 13)))
                          ===>  #unspecified
(assv 5 '((2 3) (5 7) (11 13)))
                          ===>  (5 7)

Rationale: Although they are often used as predicates, memq, memv, member, assq, assv, and assoc do not have question marks in their names because they return potentially useful values rather than just #t or #f.


The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§