JavaTXCompilerInJavaTX/app/resources/javFiles/mathStruc.jav
2023-01-10 14:22:05 +01:00

8 lines
141 B
Java

class MathStruc <A> {
A model;
innerOp = o -> ms -> new MathStruc<A>(o.apply(this.model, ms.model));
MathStruc(A m) { model=m; }
}