Get the properties field from a vl-interface.
(vl-interface->properties x) → properties
This is an ordinary field accessor created by defprod.
Function:
(defun vl-interface->properties$inline (x) (declare (xargs :guard (vl-interface-p x))) (declare (xargs :guard t)) (let ((__function__ 'vl-interface->properties)) (declare (ignorable __function__)) (mbe :logic (b* ((x (and t x))) (vl-propertylist-fix (std::prod-cdr (std::prod-cdr (std::prod-car (std::prod-cdr (std::prod-car (cdr x)))))))) :exec (std::prod-cdr (std::prod-cdr (std::prod-car (std::prod-cdr (std::prod-car (cdr x)))))))))
Theorem:
(defthm vl-propertylist-p-of-vl-interface->properties (b* ((properties (vl-interface->properties$inline x))) (vl-propertylist-p properties)) :rule-classes :rewrite)
Theorem:
(defthm vl-interface->properties$inline-of-vl-interface-fix-x (equal (vl-interface->properties$inline (vl-interface-fix x)) (vl-interface->properties$inline x)))
Theorem:
(defthm vl-interface->properties$inline-vl-interface-equiv-congruence-on-x (implies (vl-interface-equiv x x-equiv) (equal (vl-interface->properties$inline x) (vl-interface->properties$inline x-equiv))) :rule-classes :congruence)