JavaCompilerCore/resources/bytecode/javFiles/mathStruc.jav

16 lines
334 B
Plaintext
Raw Normal View History

import java.util.Vector;
import java.lang.Integer;
2019-09-17 07:33:18 +00:00
public class mathStruc {
2019-08-23 13:06:54 +00:00
model;
//Fun1*<Fun2*<A,A,A>, Fun1*<MathStruc <A>,MathStruc <A>>>
innerOp = (o) -> (ms) -> new mathStruc<>(o.apply(model,ms.model));
2019-09-17 07:33:18 +00:00
public mathStruc(m) {
2019-08-23 13:06:54 +00:00
model =m;
//innerOp = (o) -> (ms) -> new mathStruc<>(o.apply(this.model,ms.model));
}
}