alist-copy

Copies an associative list.  See Associative lists.

Exported from

Arguments

alistAn instance of <sequence>.  An associative list.
key:An instance of <function> used to obtain a key element from an association.  The default is head.
datum:An instance of <function> used to obtain a value element from an association.  The default is tail.
cons:An instance of <function> used to create an association from a key and datum argument.  The default is pair.

Values

new-aseqAn instance of <sequence>.  The new associative list.
Those familiar with Lisp will feel at home here.
Sequence-Utilities, written by Matthias Hölzl, provides common or oft-used operations performed on <sequence>s.
The class of collections whose keys are consecutive integers starting from zero.
The class of objects that can be applied to arguments.
Returns the head of a list.
Returns the tail of a list.
Creates and returns a freshly allocated pair.