strongMapEachIndexed

inline fun <T, R> Provider<Collection<T>>.strongMapEachIndexed(crossinline transform: (Int, T) -> R): Provider<List<R>>

Creates and returns a new Provider that maps each element and its index of the Collection obtained from this using the transform function.

transform should be a pure function.