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