Fardale
Fardale
In Lwt, the module Infix still exists and is for the infix operator like `>>=`. The module Syntax contains `let*` and other. Currently the monadic let bindings are in the...
I just tried it and it currently does not work. The fix is small but I want to improve a bit more stuff as I work with it. So I...
From my testing, it seems enough to define `min` as: ```ocaml let min (x:int) (y:int) = if x
I would need to look how it is compiled. The question is, does the compiler specialised the compare function or not. If not, then it goes through the polymorphic compare...
I tried to play to see the case for `min`, but I don't see the function, so I don't know how to interpret this.
I am planning to check this when I got some time.