2015-11-11 20:20:04 -08:00
|
|
|
|
// onjava/Generated.java
|
2015-11-14 16:18:05 -08:00
|
|
|
|
// <20>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.
|
2015-11-11 20:20:04 -08:00
|
|
|
|
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
|
|
|
|
}
|