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