This inspection looks for loops which could be replaced with Arrays.setAll() call.

The loops like this are reported:

  for (int i=0; i<array.length; i++) {
     array[i] = calc(i);
  }

This inspection is available since Java 8 only.

New in 2017.1