The monomorphism-restriction tag has no wiki summary.
2
votes
1answer
94 views
lazy list reconstructed based on concreteness of its type?
I wrote a simple (and unserious) prime number generator in Haskell, with mutually-recursive definitions for generating the primes and for determining the primeness of a number:
primes :: (Integral a) ...
3
votes
1answer
228 views
Haskell multiply Int and real number
I have
coefficient :: ???????
coefficient = 1.0
and
val :: Int
and I would like to do
result :: ???????
result val coefficient = val * coefficient
What type signatures and conversion ...
6
votes
1answer
283 views
Explain monomorphism restriction to me please?
I started doing 99 haskell problems and I was on problem 7 and my unittests were blowing up.
Apparently, it's due to this: http://www.haskell.org/haskellwiki/Monomorphism_restriction
I just wanted ...
2
votes
1answer
154 views
Why does changing sq to point-free change the type [duplicate]
Possible Duplicate:
What is going on with the types in this ghci session?
To try and practice a bit of haskell and learn about point free I was playing around with a function to square a ...
9
votes
2answers
329 views
NoMonomorphismRestriction helps preserve sharing?
I was trying to answer another question about polymorphism vs sharing when I stumbled upon this strange behaviour.
In GHCi, when I explicitly define a polymorphic constant, it does not get any ...
8
votes
1answer
391 views
Using the state monad to hide explicit state
I'm trying to write a little game in Haskell, and there's a fair amount of state necessary to pass around. I want to try hiding the state with the State monad
Now I've run into a problem: functions ...
8
votes
1answer
165 views
When can I bind a function to another name?
When working in the interpreter, it's often convenient to bind a function to a name, for example:
ghci> let f = (+1)
ghci> f 1
2
This aliases the name f to the function (+1). Simple.
...
17
votes
2answers
335 views
Effects of monomorphism restriction on type class constraints
This code breaks when a type declaration for baz is added:
baz (x:y:_) = x == y
baz [_] = baz []
baz [] = False
A common explanation (see Why can't I declare the inferred type? for an example) ...
23
votes
3answers
641 views
Why do 3 and x (which was assigned 3) have different inferred types in Haskell?
Type inference in Haskell has a bit of a learning curve (to say the least!). A good way to start learning it is with simple examples. So, the following is a bit of a "hello world" for type inference.
...
6
votes
1answer
300 views
Haskell's type inference strangeness
Look at this output from ghci:
Prelude> :t Data.Map.lookup
Data.Map.lookup :: Ord k => k -> Data.Map.Map k a -> Maybe a
Prelude> :t flip Data.Map.lookup
flip Data.Map.lookup :: Ord a ...
12
votes
3answers
788 views
Haskell function type question
I'm beginning Haskell... I tried to write the following trivial function in two different ways, letting Haskell decide the types, and the type system does something different in each case. What is the ...
5
votes
2answers
307 views
Specific type inference using uncurry function
I've been playing with the uncurry function in GHCi and I've found something I couldn't quite get at all. When I apply uncurry to the (+) function and bind that to some variable like in the code ...
13
votes
1answer
802 views
What is XNoMonomorphismRestriction?
This page usages
$ ghci -XNoMonomorphismRestriction
to start the haskell interpreter.
What does XNoMonomorphismRestriction switch mean?
15
votes
2answers
509 views
Why are polymorphic values not inferred in Haskell?
Numeric literals have a polymorphic type:
*Main> :t 3
3 :: (Num t) => t
But if I bind a variable to such a literal, the polymorphism is lost:
x = 3
...
*Main> :t x
x :: Integer
If I ...