Example usage for java.util.stream IntStream boxed

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

Introduction

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

Prototype

Stream<Integer> boxed();

Source Link

Document

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

Usage

From source file:Main.java

public static void main(String[] args) {
    IntStream i = IntStream.of(1, 2, 3, 4, 5, 6, 7);
    Stream<Integer> o = i.boxed();

    o.forEach(System.out::println);
}