mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 11:47:50 +07:00
12 lines
266 B
Java
12 lines
266 B
Java
// "Replace with toArray" "true"
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
public class Test {
|
|
public void test(List<Integer> ints) {
|
|
long[] arr = ints.stream().mapToLong(anInt -> anInt).toArray();
|
|
System.out.println(Arrays.toString(arr));
|
|
}
|
|
}
|