Example usage for java.util.stream DoubleStream allMatch

List of usage examples for java.util.stream DoubleStream allMatch

Introduction

In this page you can find the example usage for java.util.stream DoubleStream allMatch.

Prototype

boolean allMatch(DoublePredicate predicate);

Source Link

Document

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

Usage

From source file:Main.java

public static void main(String[] args) {
    DoubleStream b = DoubleStream.of(1.1, 2.2, 3.3, 4.4, 5.5);
    boolean d = b.allMatch(n -> n > 5);
    System.out.println(d);/*from w  ww.  j av a  2s  . c o  m*/
}