Example usage for java.util.stream LongStream mapToInt

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

Introduction

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

Prototype

IntStream mapToInt(LongToIntFunction mapper);

Source Link

Document

Returns an IntStream 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) {
    LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE);

    b.mapToInt(n -> {
        return (int) n;
    }).forEach(System.out::println);
}