Recognizer for a true list of binary trees.
(binary-tree-listp x) → *
Function:
(defun binary-tree-listp (x) (declare (xargs :type-prescription (booleanp (binary-tree-listp x)))) (declare (xargs :guard t)) (if (consp x) (and (binary-tree-p (first x)) (binary-tree-listp (rest x))) (null x)))