com.meliorbis.numerics.generic.ArrayFactory2D Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Numerics Show documentation
Show all versions of Numerics Show documentation
A library for working with large multi-dimensional arrays and the functions they represent
package com.meliorbis.numerics.generic;
/**
* Factory for creating double arrays of generic type
*/
@FunctionalInterface
public interface ArrayFactory2D
{
T[][] createArray(int size_);
}