About

A polymorphic function fst that returns the first element of any two-tuple will have the signature

fst :: (a, b) -> a

Here, a and b are not normal variables, they are type variables. In other words, they range over types instead of values. In this example they can take on any type, but the type can be restricted as in

toInteger :: Integral a => a -> Integer

Here, the type variable a must belong to the Integral type class before you can apply the toInteger function to it.

For more informatin, see the Wikipedia article.

history|show excerpt|excerpt history