LongStream mapToDouble (LongToDoubleFunction mapper)

Description

LongStream mapToDouble(LongToDoubleFunction mapper) returns a DoubleStream by applying the given function. This is an intermediate operation.

Syntax

mapToDouble has the following syntax.


DoubleStream mapToDouble(LongToDoubleFunction mapper)

Example

The following example shows how to use mapToDouble.


import java.util.stream.LongStream;
/*from www. j av a  2s  .  co m*/
public class Main {
  public static void main(String[] args) {
    LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE);

    b.mapToDouble(n -> Math.sin(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