JavaTXCompilerInJavaTX/test/javFiles/mathStruc.jav
2017-09-25 23:47:38 +02:00

13 lines
182 B
Java

class mathStruc<A> {
mathStruc(A a) { }
A model(){ A a; return a; }
methode(){
var innerOp = o -> ms ->
new mathStruc<A>(o.apply(this.model(),ms.model()));
return innerOp;
}
}