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