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