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