List of usage examples for java.util.stream IntStream anyMatch
boolean anyMatch(IntPredicate predicate);
From source file:Main.java
public static void main(String[] args) { IntStream i = IntStream.of(6, 5, 7, 1, 2, 3, 3); boolean d = i.anyMatch(n -> n > 0); System.out.println(d);/*from w w w .ja v a2 s . com*/ }