mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 19:58:23 +07:00
12 lines
284 B
Java
12 lines
284 B
Java
// "Collapse loop with stream 'toArray()'" "true-preview"
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
public class Test {
|
|
public void test(List<List<String>> list) {
|
|
List<?>[] arr = list.stream().toArray(List[]::new);
|
|
System.out.println(Arrays.toString(arr));
|
|
}
|
|
}
|