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