kmongo / kotlin.collections / com.mongodb.client.MongoIterable / unzip

unzip

fun <T, R> MongoIterable<Pair<T, R>>.unzip(): Pair<List<T>, List<R>> (source)

Returns a pair of lists, where first list is built from the first values of each pair from this collection, second list is built from the second values of each pair from this collection.

//Unresolved: samples.collections.Iterables.Operations.unzipIterable