Abstract a
(abs-comma-function-parameter tree) → fpar
Function:
(defun abs-comma-function-parameter (tree) (declare (xargs :guard (abnf::treep tree))) (let ((__function__ 'abs-comma-function-parameter)) (declare (ignorable __function__)) (b* (((okf (abnf::tree-list-tuple2 sub)) (abnf::check-tree-nonleaf-2 tree nil)) ((okf tree) (abnf::check-tree-list-1 sub.1st)) ((okf &) (abnf::check-tree-ichars tree ",")) ((okf tree) (abnf::check-tree-list-1 sub.2nd))) (abs-function-parameter tree))))
Theorem:
(defthm funparam-resultp-of-abs-comma-function-parameter (b* ((fpar (abs-comma-function-parameter tree))) (funparam-resultp fpar)) :rule-classes :rewrite)
Theorem:
(defthm abs-comma-function-parameter-of-tree-fix-tree (equal (abs-comma-function-parameter (abnf::tree-fix tree)) (abs-comma-function-parameter tree)))
Theorem:
(defthm abs-comma-function-parameter-tree-equiv-congruence-on-tree (implies (abnf::tree-equiv tree tree-equiv) (equal (abs-comma-function-parameter tree) (abs-comma-function-parameter tree-equiv))) :rule-classes :congruence)