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