static int[] secondIntFromLong_onArray(long[] a) { if (a == null) null; int n = a.length; int[] x = new int[n]; for i to n: x[i] = secondIntFromLong(a[i]); ret x; }