Files
openide/java/java-tests/testData/inspection/streamApiCallChains/afterIterateArrayMapToDouble.java
Tagir Valeevandintellij-monorepo-bot b9a2e79c7c [intention-preview] Draft of automatic preview testing with LightQuickFixTestCase
Use "true+preview" to check preview. By default, checks whether preview is equal to the actual action result.
Alternatively, previewXyz file could be supplied to assert the preview text

GitOrigin-RevId: 24a7a7539466137827200458ced235dd5e2b6d0a
2022-07-21 18:15:25 +00:00

14 lines
422 B
Java

// "Replace 'IntStream.range().mapToDouble()' with 'Arrays.stream(numbers)'" "true-preview"
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.stream.IntStream;
public class Test extends ArrayList<String> {
public void test(List<List<String>> list) {
double[] numbers = {1,2,3,4,5};
double[] doubled = Arrays.stream(numbers).map(number -> number * 2).toArray();
}
}