forked from JavaTX/JavaCompilerCore
5 lines
121 B
Plaintext
5 lines
121 B
Plaintext
|
import java.util.Vector;
|
||
|
|
||
|
class Matrix extends Vector<Vector<Integer>> {
|
||
|
op = (Matrix m) -> (f) -> f.apply(this, m);
|
||
|
}
|