static A objectArrayGet(A[] array, int i) { ret array == null || i < 0 || i >= array.length ? null : array[i]; }