2015-05-29 14:18:51 -07:00

19 lines
558 B
Java

//: net/mindview/util/Generated.java
// ©2015 MindView LLC: see Copyright.txt
package net.mindview.util;
public class Generated {
// Fill an existing array:
public static <T> T[] array(T[] a, Generator<T> gen) {
return new CollectionData<>(gen, a.length).toArray(a);
}
// Create a new array:
@SuppressWarnings("unchecked")
public static <T> T[] array(Class<T> type,
Generator<T> gen, int size) {
T[] a =
(T[])java.lang.reflect.Array.newInstance(type, size);
return new CollectionData<>(gen, size).toArray(a);
}
} ///:~