Get the kind (tag) of a initer structure.
(initer-kind x) → kind
Function:
(defun initer-kind$inline (x) (declare (xargs :guard (initerp x))) (let ((__function__ 'initer-kind)) (declare (ignorable __function__)) (mbe :logic (cond ((or (atom x) (eq (car x) :single)) :single) (t :list)) :exec (car x))))
Theorem:
(defthm initer-kind-possibilities (or (equal (initer-kind x) :single) (equal (initer-kind x) :list)) :rule-classes ((:forward-chaining :trigger-terms ((initer-kind x)))))