(my-binary-append x y) → *
Function:
(defun my-binary-append (x y) (declare (xargs :guard (true-listp x))) (let ((__function__ 'my-binary-append)) (declare (ignorable __function__)) (mbe :logic (binary-append x y) :exec (if (eq y nil) x (binary-append x y)))))