def arrayTest(arr: Array[String], sz: Int): Unit = { Array.tabulate(sz * 2) { ix => if (ix % 2 == 0) '\t' else '\n' } } ``` public void arrayTest(String[] arr, int sz) { Array$.MODULE$.tabulate(sz * 2, ix -> this.arrayTest$$anonfun$1(BoxesRunTime.unboxToInt((Object)ix)), ClassTag$.MODULE$.apply(Character.TYPE)); } private final /* synthetic */ char arrayTest$$anonfun$1(int ix) { return ix % 2 == 0 ? '\t' : '\n'; } ```
это с -optimize флагом?
не пробовал, его все равно не включает никто. Минуту
Обсуждают сегодня