mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
14 lines
334 B
Java
14 lines
334 B
Java
// "Replace with count()" "true"
|
|
import java.util.List;
|
|
import java.util.Set;
|
|
|
|
public class Main {
|
|
public void test(List<Set<String>> nested) {
|
|
int count = 0;
|
|
for(Set<String> element : nested) {
|
|
if(element != null) {
|
|
count += element.stream().filter(str -> str.startsWith("xyz")).count();
|
|
}
|
|
}
|
|
}
|
|
} |