JavaPatternMatching/test/bytecode/Matrix_lambda.jav

5 lines
121 B
Plaintext
Raw Normal View History

2015-09-24 13:26:34 +00:00
import java.util.Vector;
2015-09-24 13:26:34 +00:00
class Matrix extends Vector<Vector<Integer>> {
op = (Matrix m) -> (f) -> f.apply(this, m);
}