mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
46 lines
1.2 KiB
Java
46 lines
1.2 KiB
Java
// "Replace Stream API chain with loop" "true-preview"
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.function.Function;
|
|
import java.util.function.Predicate;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Stream;
|
|
|
|
public class Test {
|
|
// Mock Java 9 methods with inheritor
|
|
interface MyStream<T> extends Stream<T> {
|
|
<R> MyStream<R> flatMap(Function<? super T, ? extends Stream<? extends R>> mapper);
|
|
|
|
MyStream<T> takeWhile(Predicate<? super T> predicate);
|
|
|
|
MyStream<T> dropWhile(Predicate<? super T> predicate);
|
|
|
|
static <T> MyStream<T> of(List<T> list) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public static void test(List<String> data) {
|
|
List<String> xyz = new ArrayList<>();
|
|
boolean dropping = true;
|
|
OUTER:
|
|
for (String s : data) {
|
|
for (String string : Arrays.asList(s, s + s)) {
|
|
if (string.isEmpty()) {
|
|
break OUTER;
|
|
}
|
|
if (dropping) {
|
|
if (string.length() < 3) {
|
|
continue;
|
|
}
|
|
dropping = false;
|
|
}
|
|
xyz.add(string);
|
|
}
|
|
}
|
|
System.out.println(xyz);
|
|
}
|
|
}
|