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