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