is there a way to invoke `associateBy` which would...
# announcements
b
is there a way to invoke
associateBy
which would support a mapping that was one to many? i.e. translate a
List<Foo>
where
Foo
is, say,
data class Foo(val valueOne: Int, val valueTwo: String)
to a
Map<Int, List<String>>
?
oops, just found
groupBy
, think that should do it
💯 5