List of usage examples for java.util.stream IntStream noneMatch
boolean noneMatch(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.noneMatch(n -> n > 0); System.out.println(d);//from w w w . ja v a2 s . co m }