Get the left subtree of the nonempty binary-tree.
(tree-left tree) → left
For empty trees, returns
Function:
(defun tree-left$inline (tree) (declare (xargs :guard (binary-tree-p tree))) (cadr (tree-fix tree)))
Theorem:
(defthm binary-tree-p-of-tree-left (b* ((left (tree-left$inline tree))) (binary-tree-p left)) :rule-classes :rewrite)