IntStream allMatch(IntPredicate predicate) example
Description
IntStream allMatch(IntPredicate predicate)
returns whether all elements of this stream match the provided predicate.
Syntax
allMatch
has the following syntax.
boolean allMatch(IntPredicate predicate)
Example
The following example shows how to use allMatch
.
import java.util.stream.IntStream;
/* w w w.j a va 2 s .c o m*/
public class Main {
public static void main(String[] args) {
IntStream i = IntStream.concat(IntStream.of(6,5,7,1, 2, 3, 3),IntStream.of(9,8));
boolean d = i.allMatch(n-> n > 0 );
System.out.println(d);
}
}
The code above generates the following result.