StreamToLoop tests grouped

This commit is contained in:
Tagir Valeev
2017-01-27 17:38:37 +07:00
parent babce0b78c
commit fb6ba726e5
307 changed files with 2749 additions and 4686 deletions

View File

@@ -0,0 +1,24 @@
// "Fix all 'Stream API call chain can be replaced with loop' problems in file" "true"
import java.util.List;
import java.util.function.Predicate;
public class Main {
static Predicate<String> nonEmpty = s -> s != null && !s.isEmpty();
private static long testFunctionInField(List<String> strings) {
return strings.stream().filter(nonEmpty).cou<caret>nt();
}
private static long testStreamOfFunctions(List<Predicate<String>> predicates, List<String> strings) {
return predicates.stream().filter(pred -> pred != null)
.flatMap(p -> strings.stream().filter(p)).count();
}
public static void main(String[] args) {
System.out.println(testStreamOfFunctions(
Arrays.asList(String::isEmpty, s -> s.length() > 3),
Arrays.asList("", "a", "abcd", "xyz")
));
}
}