Is there anything in the stdlib that allows zippin...
# announcements
j
Is there anything in the stdlib that allows zipping two collections together, but padding the result with nulls if one collection is shorter? Kind of like
fun <T, R> Iterable<T>.zipPadded(other: Iterable<R>): List<Pair<T?,R?>>
i
There's a request for that function: https://youtrack.jetbrains.com/issue/KT-13017
j
Thank you
i
Could you describe your use case, here or in that issue?
j
will do