Recognizer for vl-user-paramsetting structures.
(vl-user-paramsetting-p x) → *
Function:
(defun vl-user-paramsetting-p (x) (declare (xargs :guard t)) (let ((__function__ 'vl-user-paramsetting-p)) (declare (ignorable __function__)) (and (true-listp x) (eql (len x) 3) (b* ((modname (std::da-nth 0 x)) (unparam-name (std::da-nth 1 x)) (settings (std::da-nth 2 x))) (and (stringp modname) (stringp unparam-name) (vl-string/int-alist-p settings))))))
Theorem:
(defthm consp-when-vl-user-paramsetting-p (implies (vl-user-paramsetting-p x) (consp x)) :rule-classes :compound-recognizer)