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 ...
10
votes
1answer
159 views
How does GHCi pick names for type variables?
When using the interactive GHC interpreter, it's possible to ask for the inferred type of an expression:
Prelude> :t map
map :: (a -> b) -> [a] -> [b]
It seems that it takes the names ...
7
votes
3answers
104 views
Haskell: Implement “randoms” (a.k.a., Ambiguous type variable)
I am reading through LYAH, and in Chapter 9, I found a curious problem. The author provides an example of implementing the "randoms" function:
randoms' :: (RandomGen g, Random a) => g -> [a]
...
5
votes
2answers
252 views
Ambiguous type variable 'blah' in the constraint… how to fix?
I'm trying to write a simple ray-tracer in Haskell. I wanted to define a typeclass representing the various kinds of surfaces available, with a function to determine where a ray intersects them:
{-# ...
3
votes
2answers
143 views
Does Free Pascal have type variables like Haskell?
Haskell lets you define functions like thrice, which accepts an element of type a and returns a list of the element repeated three times, for any data type a.
thrice :: a -> [a]
thrice x = [x, x, ...
1
vote
2answers
92 views
Parse error using lexically scoped type variables in Haskell
When I submit to GHC the code
{-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies, ScopedTypeVariables #-}
class Modular s a | s -> a where modulus :: s -> a
newtype M s a = M {unM ...