Create an initial function table.
(fun-table-init) → funtab
This is just the empty map.
Function:
(defun fun-table-init nil (declare (xargs :guard t)) (let ((__function__ 'fun-table-init)) (declare (ignorable __function__)) nil))
Theorem:
(defthm fun-tablep-of-fun-table-init (b* ((funtab (fun-table-init))) (fun-tablep funtab)) :rule-classes :rewrite)