Say I have a Map extends Object, List>
Map extends Object, List>
I can get the values of the map easily enough, and iterate over it to produce a single
Suggested by a colleague:
listOfLists.stream().flatMap(e -> e.stream()).collect(Lists.toList())
I like it better than forEach().