Clamps Dictionary
index-list
Function
(index-list list &key (n 0))
Return list with increasing indexes consed to the front of each element of list starting from n.
Arguments
list |
List containing elements which get prepended indices. |
n |
Integer denoting starting index |
Example
(index-list '(a b c d e)) ; => ((0 . a) (1 . b) (2 . c) (3 . d) (4 . e))
Created: 2025-02-18 Di 12:58