alist-copy

[procedure] alist-copy alist

SRFI-1: Make a fresh copy of alist. This means copying each pair that forms an association as well as the spine of the list, i.e.

     (lambda (a) (map (lambda (elt) (cons (car elt) (cdr elt))) a))

See also list-copy.