6 ms·
SelectMany is flatMap. Could the java equivalent be? articles.stream().flatMap(article -> article.getTags().stream()) Or is the previous map required?
by hueyp 12y ago
SelectMany is flatMap.
Could the java equivalent be?
articles.stream().flatMap(article -> article.getTags().stream())
Or is the previous map required?