JavaTXCompilerInJavaTX/app/resources/javFiles/mathStruc.jav

8 lines
141 B
Plaintext
Raw Permalink Normal View History

2023-01-10 13:22:05 +00:00
class MathStruc <A> {
A model;
innerOp = o -> ms -> new MathStruc<A>(o.apply(this.model, ms.model));
MathStruc(A m) { model=m; }
}