Hacker News new | ask | show | jobs
by hueyp 4170 days ago
SelectMany is flatMap.

Could the java equivalent be?

  articles.stream().flatMap(article -> article.getTags().stream())
Or is the previous map required?