DoubleStream mapToLong (DoubleToLongFunction mapper)
Description
DoubleStream mapToLong(DoubleToLongFunction mapper)
returns a LongStream by applying the given function to the elements of this stream. This is an intermediate operation.
Syntax
mapToLong
has the following syntax.
LongStream mapToLong(DoubleToLongFunction mapper)
Example
The following example shows how to use mapToLong
.
import java.util.stream.DoubleStream;
//from w ww. j av a2 s. c om
public class Main {
public static void main(String[] args) {
DoubleStream b = DoubleStream.of(1.1,2.2,3.3,4.4,5.5);
b.mapToLong(n -> {return (long) (n*n);})
.forEach(System.out::println);
}
}
The code above generates the following result.