Abstract a
(abs-double-quote tree) → char
Function:
(defun abs-double-quote (tree) (declare (xargs :guard (abnf::treep tree))) (let ((__function__ 'abs-double-quote)) (declare (ignorable __function__)) (b* (((okf &) (abnf::check-tree-nonleaf-num-seq tree "double-quote" (list 34)))) (char 34))))
Theorem:
(defthm char-resultp-of-abs-double-quote (b* ((char (abs-double-quote tree))) (char-resultp char)) :rule-classes :rewrite)
Theorem:
(defthm abs-double-quote-of-tree-fix-tree (equal (abs-double-quote (abnf::tree-fix tree)) (abs-double-quote tree)))
Theorem:
(defthm abs-double-quote-tree-equiv-congruence-on-tree (implies (abnf::tree-equiv tree tree-equiv) (equal (abs-double-quote tree) (abs-double-quote tree-equiv))) :rule-classes :congruence)