Abstract a
(abs-horizontal-tab-escape tree) → char
Function:
(defun abs-horizontal-tab-escape (tree) (declare (xargs :guard (abnf::treep tree))) (let ((__function__ 'abs-horizontal-tab-escape)) (declare (ignorable __function__)) (b* (((okf tree) (abnf::check-tree-nonleaf-1-1 tree "horizontal-tab-escape")) ((okf &) (abnf::check-tree-schars tree "\\t"))) (char 9))))
Theorem:
(defthm char-resultp-of-abs-horizontal-tab-escape (b* ((char (abs-horizontal-tab-escape tree))) (char-resultp char)) :rule-classes :rewrite)
Theorem:
(defthm abs-horizontal-tab-escape-of-tree-fix-tree (equal (abs-horizontal-tab-escape (abnf::tree-fix tree)) (abs-horizontal-tab-escape tree)))
Theorem:
(defthm abs-horizontal-tab-escape-tree-equiv-congruence-on-tree (implies (abnf::tree-equiv tree tree-equiv) (equal (abs-horizontal-tab-escape tree) (abs-horizontal-tab-escape tree-equiv))) :rule-classes :congruence)