I am converting several modules based on OCaml to F#. The OCaml code uses the num type from the num module.
type num =
| Int of int
| Big_int of Big_int.big_int
| Ratio of Ratio.ratio
While I have been lucky enough for this convertion to change the OCaml num variables to just a F# int type, I was wondering if anyone knows of a public port of the num module to F#.
If you are sure the answer is no, that’s all I need. I know people frown on short answers, but that is all I need if the answer is no.
See FSharp.Compatibility.OCaml.Num.fs by Jack