Recognizer for sllong-array structures.
(sllong-arrayp x) → *
Function:
(defun sllong-arrayp (x) (declare (xargs :guard t)) (let ((__function__ 'sllong-arrayp)) (declare (ignorable __function__)) (and (consp x) (eq (car x) :array) (true-listp (cdr x)) (eql (len (cdr x)) 2) (b* ((elemtype (std::da-nth 0 (cdr x))) (elements (std::da-nth 1 (cdr x)))) (and (typep elemtype) (sllong-listp elements) (type-case elemtype :sllong) (consp elements))))))
Theorem:
(defthm consp-when-sllong-arrayp (implies (sllong-arrayp x) (consp x)) :rule-classes :compound-recognizer)