Files
openide/java/java-tests/testData/inspection/streamApiCallChains/beforeAllMatchNegatedPrimitive.java
T

10 lines
257 B
Java

// "Replace DoubleStream.allMatch(x -> !(...)) with noneMatch(...)" "true"
import java.util.stream.*;
class Test {
public boolean testAllMatch(double[] data) {
if(DoubleStream.of(data).allM<caret>atch(d -> !Double.isNaN(d)))
return true;
}
}