(vl-maybe-exprtype-list-p x) recognizes lists where every element satisfies vl-maybe-exprtype-p.
(vl-maybe-exprtype-list-p x) → std::bool
This is an ordinary deflist. It is
"loose" in that it does not care whether
Function:
(defun vl-maybe-exprtype-list-p (x) (declare (xargs :guard t)) (let ((__function__ 'vl-maybe-exprtype-list-p)) (declare (ignorable __function__)) (if (consp x) (and (vl-maybe-exprtype-p (car x)) (vl-maybe-exprtype-list-p (cdr x))) t)))