If you only need a list of values, I'd use just `f...
# announcements
c
If you only need a list of values, I'd use just
filter
to avoid creating a map
m
filter
creates the map regardless
it calls
filterTo()
with a new
LinkedHashMap
c
Yes, version with mapTo suggested by Kevin is much better.