Example usage for java.util.stream LongStream asDoubleStream

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

Introduction

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

Prototype

DoubleStream asDoubleStream();

Source Link

Document

Returns a DoubleStream consisting of the elements of this stream, converted to double .

Usage

From source file:Main.java

public static void main(String[] args) {
    LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE);

    b.asDoubleStream().forEach(System.out::println);
}