List of usage examples for java.util.stream DoubleStream allMatch
boolean allMatch(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.allMatch(n -> n > 5); System.out.println(d);/*from w ww. j av a 2s . c o m*/ }