List of usage examples for java.util.stream DoubleStream noneMatch
boolean noneMatch(DoublePredicate predicate);
From source file:Main.java
public static void main(String[] args) { DoubleStream b = DoubleStream.of(1.1, 2.2, 3.3, 4.4, 5.5); boolean d = b.noneMatch(n -> n > 5); System.out.println(d);/* w w w . j a v a 2 s.co m*/ }