List of usage examples for java.util.stream DoubleStream mapToInt
IntStream mapToInt(DoubleToIntFunction mapper);
From source file:Main.java
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); }