Compiled with ghc --make, these two programs produce the exact same binaries:
-- id1a.hs
main = print (id' 'a')
id' :: a -> a
id' x = x
-- id1b.hs
main = print (id' 'a')
id' :: Char -> Char
id' x = x
Is this just because of how trivial/contrived my example is, or does this hold true as programs get more complex?
Also, is there any good reason to avoid making my types as general as possible? I usually try keep specifics out where I don't need them, but I am not extremely familiar with the effects of this on compiled languages, especially Haskell/GHC.
Side Note:
I seem to recall a recent SO question where the answer was to make a type more specific in order to improve some performance issue, though I cannot find it now, so I may have imagined it.
Edit:
I understand from a usability / composability standpoint that more general is always better, I'm more interested in the effects this has on the compiled code. Is it possible for me to be too eager in abstracting my code? Or is this usually not a problem in Haskell?
Control.Monad.forever :: Monad m => m a -> m b. That type signature is so general that with the right instances in scope you can writemain = forever putStrLn "hello!"and it will typecheck and compile without any warning - and then infinite loop when run. All because you forgot a$. Remember that generality means more programs typecheck, and in some cases that means more wrong programs typecheck - often, type errors are a good thing. Usually, generalise everything, though. – Ben Millwood Oct 7 '11 at 15:22