LongStream mapToInt(LongToIntFunction mapper) example

Description

LongStream mapToInt(LongToIntFunction mapper) returns an IntStream by applying the given function. This is an intermediate operation.

Syntax

mapToInt has the following syntax.


IntStream mapToInt(LongToIntFunction mapper)

Example

The following example shows how to use mapToInt.


import java.util.stream.LongStream;
/*w  ww .j a  v a2s  .c o m*/
public class Main {
  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);
  }
}

The code above generates the following result.





















Home »
  Java Streams »
    Reference »




Collectors
DoubleStream
DoubleStream.Builder
IntStream
IntStream.Builder
LongStream
LongStream.Builder
Stream
Stream.Builder