OnJava8-Examples/onjava/Generated.java

22 lines
695 B
Java
Raw Normal View History

// onjava/Generated.java
2015-12-15 11:47:04 -08:00
// (c)2016 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
package onjava;
2015-11-03 12:00:44 -08:00
import java.util.function.*;
2015-06-15 17:47:35 -07:00
public class Generated {
// Fill an existing array:
2015-11-03 12:00:44 -08:00
public static <T> T[] array(T[] a, Supplier<T> gen) {
2015-06-15 17:47:35 -07:00
return new CollectionData<>(gen, a.length).toArray(a);
}
// Create a new array:
@SuppressWarnings("unchecked")
public static <T> T[] array(Class<T> type,
2015-11-03 12:00:44 -08:00
Supplier<T> gen, int size) {
2015-06-15 17:47:35 -07:00
T[] a =
(T[])java.lang.reflect.Array.newInstance(type, size);
return new CollectionData<>(gen, size).toArray(a);
}
2015-09-07 11:44:36 -06:00
}