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