Namespacing Variants in ML(keleshev.com)
keleshev.com
Namespacing Variants in ML
http://keleshev.com/namespacing-variants-in-ml
3 comments
Or you can use polymorphic variants in OCaml:
type color = `Red | `Green | `Blue | `Black | `Brown
type hair_color = `Black | `Brown | `BlondIn OCaml 4.01, the compiler is smart enough to distinguish between constructors with the same name but a different type -- so those variants wouldn't even need to be polymorphic anymore. This also partially mitigates the need for 'namespacing' your variants.
Oh, that's pretty nice. OCaml really gets namespacing problems out your way.
One thing to consider though is the grepability of a codebase. By relying more on nested modules, module aliases, opens, local opens, then many constructors have more than one way to be written and it makes it harder for grep to find what you look for. Of course people should not use grep and instead rely on IDE or tools that understand deeply the programming language being edited ... which makes the problem I mentioned go away. But still it's nice to have the possibility to use simple tools like grep and that they would simply work.
Without namespacing, you might be using mutually recursive type definitions like
to do this with modules you need to use recursive modules, like
One of the sucky things about recursive modules is that you cannot omit the signatures, however if your modules only include types then there is a shortcut that looks like
Links: Big real world example: https://github.com/facebook/flow/blob/3a5b4040b7d2a648f97a06...
Recursive module docs: http://caml.inria.fr/pub/docs/manual-ocaml-400/manual021.htm...