What’s the function that sorts a list of things in...
# getting-started
r
What’s the function that sorts a list of things into buckets, like partition(list: List<A>, key: (A -> B)): Map<B, List<A>> ?
t
groupBy
?
🙌 1