Is there a nice way to split a `List<Pair<A,...
# announcements
k
Is there a nice way to split a
List<Pair<A, B>>
into
Pair<List<A>, List<B>>
? You can do a normal for loop and add to two separate lists but that's a bit ugly.