mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
11 lines
302 B
Java
11 lines
302 B
Java
// "Replace with 'boxed'" "true"
|
|
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.LongStream;
|
|
|
|
public class Main {
|
|
public static void main(String[] args) {
|
|
List<Integer> list = LongStream.range(0, 100).ma<caret>pToObj(x -> x).collect(Collectors.toList());
|
|
}
|
|
} |