// "Collapse loop with stream 'toArray()'" "true-preview" import java.util.Arrays; import java.util.List; public class Test { public void test(List ints) { long[] arr = ints.stream().mapToLong(anInt -> anInt).toArray(); System.out.println(Arrays.toString(arr)); } }