I started reading about GADT in Haskell Wiki but didn't feel quite comfortable understanding it. Do you recommend a specific book chapter or a blog post explaining GADT for a Haskell beginner?
|
|
Apfelmus has made video tutorial for GADTs which might be helpful. |
|||||||||||||||||||||
|
|
I like the example in the GHC manual. It's simple, and it illustrates some key points:
|
|||
|
|
|
Other links: |
||||
|
|
|
The Haskell wiki's GADTs for dummies is the best explanation I have seen. The problem I (and I suspect others) have with most introductions is that they show examples of GADTs in terms of syntax which is non-obvious until you understand GADTs. This makes the simplest examples on which everything is built especially hard to fully understand—you can guess at what many of the patterns are doing, but understanding the exact role of every statement is challenging. The "for dummies" post dissects and builds up the meaning of the syntax along the way to explaining its own basic examples, which makes it a far more useful starting point. I highly recommend it. |
|||
|
|