Reports a mapIndexed call that can be replaced by List generator.

Example:


  val a = listOf(1, 2, 3).mapIndexed { i, _ ->
      i + 42
  }

After the quick-fix is applied:


  val a = List(listOf(1, 2, 3).size) { i ->
          i + 42
  }