Example usage for java.util.stream IntStream map

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

Introduction

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

Prototype

IntStream map(IntUnaryOperator mapper);

Source Link

Document

Returns a stream consisting of the results of applying the given function to the elements of this stream.

Usage

From source file:Main.java

public static void main(String[] args) {
    IntStream i = IntStream.of(6, 5, 7, 1, 2, 3, 3);
    IntStream d = i.map(n -> -n);
    d.forEach(System.out::println);
}

From source file:Main.java

public static void main(String[] args) {
    IntStream i = IntStream.concat(IntStream.of(6, 5, 7, 1, 2, 3, 3), IntStream.of(9, 8));
    IntStream d = i.map(n -> -n);
    d.forEach(System.out::println);
}