Example usage for java.util.stream LongStream boxed

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

Introduction

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

Prototype

Stream<Long> boxed();

Source Link

Document

Returns a Stream consisting of the elements of this stream, each boxed to a Long .

Usage

From source file:Main.java

public static void main(String[] args) {
    LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE);
    Stream<Long> l = b.boxed();
    l.forEach(System.out::println);
}