Ocaml programmers can use so called ‘phantom types’ to enforce some constraints using the type system. A nice example can be found at http://ocaml.janestreet.com/?q=node/11.
The syntax type readonly doesn’t work in F#. It could be replaced with a pseudo-phantom type defined as type readonly = ReadOnlyDummyValue in order to implement the tricks in the above mentioned blog post.
Is there a better way to define phantom types in F#?
I think that defining type just using
type somenamewon’t work in F#. The F# compiler needs to generate some .NET type from the declaration and F# specification doesn’t explicitly define what should happen for phantom types.You can create a concrete type (e.g. with
type somename = ReadOnlyDummyValue) in the implementation file (.fs) and hide the internals of the type by adding justtype somenameto the interface file (.fsi). This way you get quite close to a phantom type – the user outside of the file will not see internals of the type.Another appealing alternative would be to use interfaces. This sounds logical to me, because empty interface is probably the simplest type you can declare (and it doesn’t introduce any dummy identifiers). Empty interface looks like this:
The interesting thing, in this case, is that you can also create inherited interfaces:
Then you can write a function that can take values of type
Ref<CanRead, int>but also values of typeRef<CanReadWrite, int>(because these values also support reading):This seems like something that could be useful. I would be actually quite interested whether this can be done in OCaml too (because it relies on the F# support for interfaces and inheritance).