Check if a binary-tree is empty.
(tree-emptyp tree) → *
Function: tree-emptyp$inline
(defun tree-emptyp$inline (tree) (declare (xargs :guard (binary-tree-p tree))) (declare (xargs :type-prescription (booleanp (tree-emptyp tree)))) (endp (tree-fix tree)))