Reports loops which could be replaced with Arrays.setAll() call.

For example:

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

This inspection only reports if the project or module is configured to use a language level of 8 or higher.

New in 2017.1