I am not really proficient in Haskell, so it might be a very easy question.
What language limitation do Rank2Types solve?
Do not functions in Haskell already support polymorphic arguments?
|
I am not really proficient in Haskell, so it might be a very easy question. What language limitation do Rank2Types solve? |
||||
|
|
They do, but only of rank 1. This means that while you can write a function that takes different types of arguments without this extension, you can't write a function that uses its argument as different types in the same invocation. For example the following function can't be typed without this extension because
Note that it's perfectly possible to pass a polymorphic function as an argument to another function. So something like |
|||||
|
|
It's hard to understand higher-rank polymorphism unless you study System F directly, because Haskell is designed to hide the details of that from you in the interest of simplicity. But basically, the rough idea is that polymorphic types don't really have the
If you don't know the "∀" symbol, it's read as "for all"; You see, in System F, you can't just apply a function like that
Standard Haskell (i.e., Haskell 98 and 2010) simplifies this for you by not having any of these type quantifiers, capital lambdas and type applications, but behind the scenes GHC puts them in when it analyzes the program for compilation. (This is all compile-time stuff, I believe, with no runtime overhead.) But Haskell's automatic handling of this means that it assumes that "∀" never appears on the left-hand branch of a function ("→") type. Why would you want to do this? Because the full, unrestricted System F is hella powerful, and it can do a lot of cool stuff. For example, type hiding and modularity can be implemented using higher-rank types. Take for example a plain old function of the following rank-1 type (to set the scene):
To use
But now compare that to the following higher-rank type:
How does a function of this type work? Well, to use it, first you specify which type to use for
But now the What is this useful for? Well, for many things actually, but one idea is that you can use this to model things like object-oriented programming, where "objects" bundle some hidden data together with some methods that work on the hidden data. So for example, an object with two methods—one that returns an
How does this work? The object is implemented as a function that has some internal data of hidden type
Here we are, basically, invoking the object's second method, the one whose type is For an actual Haskell example, below is the code that I wrote when I taught myself
PS: for anybody reading this who's wondered how come |
|||||||||||||
|
|
Here is the link to slides from Bryan O'Sullivan's Haskell course at Stanford that helped me understand Rank2Types thingy. http://www.scs.stanford.edu/11au-cs240h/notes/laziness-slides.html |
|||
|
|