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