Recognizer for byte-list32.
(byte-list32p x) → *
Function:
(defun byte-list32p (x) (declare (xargs :guard t)) (and (byte-listp x) (equal (len x) 32)))
Theorem:
(defthm booleanp-of-byte-list32p (booleanp (byte-list32p x)))
Theorem:
(defthm byte-listp-when-byte-list32p-rewrite (implies (byte-list32p x) (byte-listp x)))
Theorem:
(defthm byte-listp-when-byte-list32p-forward (implies (byte-list32p x) (byte-listp x)) :rule-classes :forward-chaining)
Theorem:
(defthm len-when-byte-list32p-tau (implies (byte-list32p x) (equal (len x) 32)) :rule-classes :tau-system)