(vl-lucid-all-slices-p x) recognizes lists where every element satisfies eq.
(vl-lucid-all-slices-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-p (x) (declare (xargs :guard (vl-lucidocclist-p x))) (let ((__function__ 'vl-lucid-all-slices-p)) (declare (ignorable __function__)) (if (consp x) (and (eq (vl-lucidocc-kind (car x)) :slice) (vl-lucid-all-slices-p (cdr x))) t)))