List of usage examples for java.util.stream LongStream allMatch
boolean allMatch(LongPredicate predicate);
From source file:Main.java
public static void main(String[] args) { LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE); boolean o = b.allMatch(n -> n > 10); System.out.println(o);/*from w w w . j a va2s . co m*/ }