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