(alternative-spec-listp x) recognizes lists where every element satisfies alternative-specp.
(alternative-spec-listp x) → std::bool
This is an ordinary std::deflist. It is
"strict" in that it requires
Function:
(defun alternative-spec-listp (x) (declare (xargs :guard t)) (let ((__function__ 'alternative-spec-listp)) (declare (ignorable __function__)) (if (consp x) (and (alternative-specp (car x)) (alternative-spec-listp (cdr x))) (null x))))