Example usage for java.util.stream IntStream average

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

Introduction

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

Prototype

OptionalDouble average();

Source Link

Document

Returns an OptionalDouble describing the arithmetic mean of elements 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);
    OptionalDouble d = i.average();
    if (d.isPresent()) {
        System.out.println(d.getAsDouble());
    } else {//  www  .j  av a 2 s  .c om
        System.out.println("no value");
    }
}