Example usage for java.util.stream IntStream min

List of usage examples for java.util.stream IntStream min

Introduction

In this page you can find the example usage for java.util.stream IntStream min.

Prototype

OptionalInt min();

Source Link

Document

Returns an OptionalInt describing the minimum element of this stream, or an empty optional if this stream is empty.

Usage

From source file:Main.java

public static void main(String[] args) {
    IntStream i = IntStream.of(6, 5, 7, 1, 2, 3, 3);
    OptionalInt d = i.min();
    if (d.isPresent()) {
        System.out.println(d.getAsInt());
    } else {//  w  ww.  j  a  v  a  2  s  . co m
        System.out.println("no value");
    }
}