JavaCompilerCore/resources/javFiles/mathStruc.jav

8 lines
141 B
Plaintext
Raw Normal View History

class MathStruc <A> {
A model;
innerOp = o -> ms -> new MathStruc<A>(o.apply(this.model, ms.model));
2017-06-26 14:59:10 +00:00
MathStruc(A m) { model=m; }
}