Q: Does the stdlib have an associate-like function...
# stdlib
n
Q: Does the stdlib have an associate-like function that takes a function to merge elements with duplicate keys (similar to Collectors.toMap in Java Streams)?
d
collection.groupingBy { it.key }.aggreate
n
Awesome!