(head-key map) → *
Function:
(defun head-key (map) (declare (xargs :guard (mapp map))) (declare (xargs :guard (not (empty map)))) (let ((__function__ 'head-key)) (declare (ignorable __function__)) (mv-let (key val) (head map) (declare (ignore val)) key)))