reasonml.github.io
reasonml.github.io copied to clipboard
Locally abstract types are not in the document
Maybe I miss it but I don't find sections on the syntax for locally abstract types. I would expect it on section overview or comparison-to-ocaml.
refmt will translate this reason code let foo = (type a, x: int): int => 3;
to let foo (type a) (x : int) = (3 : int)
,