How to read Haskell: Difference between revisions
No edit summary |
mNo edit summary |
||
Line 12: | Line 12: | ||
---- | ---- | ||
== Practical tips == | == Practical tips and tricks == | ||
=== | === Trick: use the haddock === | ||
When reading a long piece of Haskell code, one which is broken up into many modules, you should consider keeping a browser window open with the auto-generated API documentation on the side (if any). | When reading a long piece of Haskell code, one which is broken up into many modules, you should consider keeping a browser window open with the auto-generated API documentation on the side (if any). | ||
== What does this function do? == | === What does this function do? === | ||
=== Trick: use type signatures === | ==== Trick: use type signatures ==== | ||
When you see stuff like this | When you see stuff like this | ||
Line 31: | Line 31: | ||
:''elaborate'' | :''elaborate'' | ||
=== Tip: a function may be defined in more than one piece === | ==== Tip: a function may be defined in more than one piece ==== | ||
Remember math class, where functions would be defined like abs(x) = x if x >= 0 or -x otherwise? It's a bit like that in Haskell too. Sometimes, rather than writing one big if-then-else, Haskellers find it more convenient to define a function separately for each case, such as... | Remember math class, where functions would be defined like abs(x) = x if x >= 0 or -x otherwise? It's a bit like that in Haskell too. Sometimes, rather than writing one big if-then-else, Haskellers find it more convenient to define a function separately for each case, such as... |
Revision as of 16:27, 13 August 2006
This stub is intended to become a tutorial on reading Haskell. It's aimed at the non-Haskeller who probably doesn't care too much about trying to write code, but wants to understand it.
The tutorial
...needs to be written (actually, Haskell for C Programmers seems to do this job)
-- insert here some horrible (for the non-Haskeller) long example
-- something we can work through slowly (and show why we find it beautiful)
Practical tips and tricks
Trick: use the haddock
When reading a long piece of Haskell code, one which is broken up into many modules, you should consider keeping a browser window open with the auto-generated API documentation on the side (if any).
What does this function do?
Trick: use type signatures
When you see stuff like this
-- example please!
foo :: Bar Ping Pong -> Baz Zed Dubya -> IO (DoublePlus Good)
...don't fight it! These are type signatures and they are an incredibly useful way of getting a rough idea what a function is supposed to do.
- elaborate
Tip: a function may be defined in more than one piece
Remember math class, where functions would be defined like abs(x) = x if x >= 0 or -x otherwise? It's a bit like that in Haskell too. Sometimes, rather than writing one big if-then-else, Haskellers find it more convenient to define a function separately for each case, such as...
abs x | x >= 0 = x
abs x = -x
What gets confusing is when you look at a definition like this...
foo x | blah =
some enormous long thing
foo x =
some other enourmously long thing
Especially looking at the bottom bit, it's hard to remember that foo
might have a another definition lurking around. Luckily, you never have to look very far, either immediately above or immediately below the other definition.
(Note: some programmers will perhaps write something like foo x | otherwise = ...
. The otherwise
is redundant (and equal to True
), but useful as reminder that this isn't the entire definition of foo
)
What the heck is xyz?
One problem you might face when reading Haskell code is figuring out some cryptic entity like xyz
is.
Tip: order doesn't matter
Outside of a monad, it really doesn't matter what order things in Haskell code appear. So if you see something like this...
foo = whatTheHeckIsBar
you should take into account that whatTheHeckIsBar
may be defined somewhere below foo
- scope in a nutshell
- except for monads? explain
Trick: use grep
(This might seem really obvious, but it's sometimes easy to forget)
Or use the search feature of your favourite text editor. It's probably defined right there before your eyes, and if it's true to Haskell style, the definition is probably so small you blew right through it. In vi, for example, you could do /= *xyz
which searches for =, an arbirtary number of spaces, and then xyz.
Barring that, xyz
might be defined in some different module in the code you downloaded. You can look for telltale signs like
import Manamana (xyz)
But note that sometimes programmers get lazy, and they don't specify that xyz
should be imported. They just let rip with
import Manamana
So solution number 3 would be do something like
grep xyz *.lhs *.hs
(Note that literate programs sometimes use non-literate code, so search in both lhs AND hs)
A fourth idea, if you can't find something, is to look it up in Hoogle
What confuses non-Haskellers
Since this tutorial is not yet written, we encourage you to note here the things which confuse non-Haskellers about the code code.
- layout instead of semicolons?
- super-super-concise stuff (things using liftM and liftM2)
- the difference between and
x <- foo
x = foo