``` val x = listOf(2, 3, 4, null, 6).mapIndexedNot...
# getting-started
a
Copy code
val x = listOf(2, 3, 4, null, 6).mapIndexedNotNull { index, value -> index + value!! }
println(x)
In this case, how can I avoid using the !! operator?