コード例 #1
0
 @Test
 public void testForEachWithIndexToArrayUsingFastList() {
   Integer[] array = new Integer[200];
   FastList<Integer> list = (FastList<Integer>) Interval.oneTo(200).toList();
   Assert.assertTrue(ArrayIterate.allSatisfy(array, Predicates.isNull()));
   ParallelIterate.forEachWithIndex(list, (each, index) -> array[index] = each, 10, 10);
   Assert.assertArrayEquals(array, list.toArray(new Integer[] {}));
 }