Construct a Java
(short-array-new-init comps) → array
Function:
(defun short-array-new-init (comps) (declare (xargs :guard (short-value-listp comps))) (declare (xargs :guard (< (len comps) (expt 2 31)))) (let ((__function__ 'short-array-new-init)) (declare (ignorable __function__)) (short-array comps)))
Theorem:
(defthm short-arrayp-of-short-array-new-init (b* ((array (short-array-new-init comps))) (short-arrayp array)) :rule-classes :rewrite)