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