is there a built in function for taking `data` and...
# getting-started
t
is there a built in function for taking
data
and turning it into
desired
?
Copy code
val data = [[a, 1], [a, 2], [b, 1], [c, 1], [c, 2], [c, 3]]
val desired = mapOf(
    a to [1, 2]
    b to [1]
    c to [1, 2, 3]
)
can i give
associate
a merge function?