Attila Mihaly

Results 16 comments of Attila Mihaly

You can see the mermaid diagrams by switching to rich diff at the upper right corner of the "Files changed" tab.

The JVM implementations of the Morphir SDK can be found here: https://github.com/finos/morphir-jvm/tree/v0.14.0/morphir/sdk/core/src/morphir/sdk

This example doesn't look right: ```scala class List[A] { def map2[A,B,C](listA:List[A])(listB:List[B])(f: (A,B) => C): List[C] } ``` Since you have both input lists as an argument putting it on the...