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