Example usage for java.util.stream LongStream anyMatch

List of usage examples for java.util.stream LongStream anyMatch

Introduction

In this page you can find the example usage for java.util.stream LongStream anyMatch.

Prototype

boolean anyMatch(LongPredicate predicate);

Source Link

Document

Returns whether any elements of this stream match the provided predicate.

Usage

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.anyMatch(n -> n > 10);

    System.out.println(o);//from ww  w. j  av  a  2s  .co m
}