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