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