8 lines
141 B
Plaintext
Raw Permalink Normal View History

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