static int absShortMax_multipleArrays(Iterable l) { int x = 0; fOr (short[] a : l) x = max(x, absShortMax(a)); ret x; }