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