If I have a List, and then call `mapIndexed` on it...
# getting-started
c
If I have a List, and then call
mapIndexed
on it. Is there any guarantees to the ordering? Docs dont seem to say
s
This doc is probably what you want: https://kotlinlang.org/docs/collection-transformations.html#map
It applies the given lambda function to each subsequent element and returns the list of the lambda results. The order of results is the same as the original order of elements.
💯 2
c
thank you so much!