
2 Aug
2018
2 Aug
'18
3:47 a.m.
Haskell does something implicit that you can't see.
f :: a -> b
really means
f :: forall a. forall b. a -> b
I think this is called universal quantification.
It's like a c++ template.
template