// "Replace 'map()' with 'mapToDouble()'" "true-preview" import java.util.stream.*; class Test { void test() { IntStream.range(0, 100).map(x -> x/1.0).forEach(s -> System.out.println(s)); } }