first commit
This commit is contained in:
18
java/expression/generic/Tabulator.java
Normal file
18
java/expression/generic/Tabulator.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package expression.generic;
|
||||
|
||||
/**
|
||||
* @author Georgiy Korneev (kgeorgiy@kgeorgiy.info)
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface Tabulator {
|
||||
Object[][][] tabulate(
|
||||
String mode,
|
||||
String expression,
|
||||
int x1,
|
||||
int x2,
|
||||
int y1,
|
||||
int y2,
|
||||
int z1,
|
||||
int z2
|
||||
) throws Exception;
|
||||
}
|
||||
Reference in New Issue
Block a user