Recognizer for maybe-expression structures.
(maybe-expressionp x) → *
Function:
(defun maybe-expressionp (x) (declare (xargs :guard t)) (let ((__function__ 'maybe-expressionp)) (declare (ignorable __function__)) (cond ((not x) (b* nil t)) (t (b* ((fty::val x)) (expressionp fty::val))))))