Name: Anonymous 2012-01-30 20:27
I have a complex list of lists and want something to check the second element of every list of the list in the loop, any supported features like this?
(defun generate-buzzword-hashtable (list)
(let ((ht (make-hash-table)))
(loop for (first relation . rest) in list
do (push (cons first rest) (gethash relation ht) ))
ht))