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