Tagged Questions
5
votes
2answers
181 views
How is the calculation of types in Haskell
Lets say
flip :: (a->b->c) ->b->a->c
const ::d->e->d
type of (flip const) would be
a=d,b=e,c=d
in
b->a->c
so the type would be
e->d->d
But for ...
19
votes
0answers
312 views
Why does ghci desugar type lists and type families? Can this be selectively disabled?
I'm trying to make the types ghci displays for my libraries as intuitive as possible, but I'm running into a lot of difficulties when using more advanced type features.
Let's say I have this code in ...
15
votes
1answer
232 views
find all types that are instances of a typeclass
learnyouahaskell mentions the following:
Types in Enum class are
(), Bool, Char, Ordering, Int, Integer, Float and Double
Is there any way to find which types are instances of which typeclass and ...
4
votes
1answer
124 views
Function definition using type synonym is “less polymorphic than expected”
Given this type synonym:
type Synonym a b = (a, b)
this code doesn't work in GHCi:
ghci> let myFirst (f, s) = f :: Synonym a b -> a
<interactive>:1:21:
Inferred type is less ...
3
votes
1answer
141 views
Inconsistent behavior with fromIntegral in GHCi
I was hoping someone could explain the following behavior in GHCi, when using the function fromIntegral:
Prelude> let x = 1 :: Integer ...
11
votes
2answers
406 views
Haskell: Why is there no type mismatch (and why does this compile)?
I was so sleepy that I wrote the following code (modified to just show the confusion):
fac s = take 10 [s, s `mod` 1 ..]
maxFactor x = if (s == [])
then x
else head ...
13
votes
6answers
339 views
How do you check the type of a local variable?
Simple question. Is it possible to check the type of a variable that is only alive within a function?
For example:
main = do
x <- something
How can I check the type of x?
I can't do ...
7
votes
3answers
184 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]
...
0
votes
3answers
110 views
Type synonym for Haskell giving type errors
I am attempting to create a type synonym that looks something like this:
data Result = Either String [Token]
I'm having difficulty because while this code compiles, when I attempt to create a ...
4
votes
2answers
185 views
Why does this start complaining about ambigous types when I extend it?
The following returns True (because 2147483647 is a prime).
length [f | f <- [2..(floor(sqrt 2147483647))], 2147483647 `mod` f == 0 ] == 0
Why doesn't it work when I try to extend it as below?
...
3
votes
3answers
246 views
Help me understand this Haskell (GHCI) type error: (Num [Char]) when appending number to string
I've been doing my annual attempt to learn Haskell this weekend, and as ever when I actually try to write a recursive function (rather than just type one in from a tutorial), I get a type error.
I'd ...
5
votes
2answers
397 views
Haskell - fmap fmap doesn't work
I'm using GHCi (version 6.12.3) to play a bit with Haskell. I recently read about functors and applicative functors thought if you couldn't something similar to <*> of applicative functors be ...
16
votes
1answer
403 views
In GHCi, why does the kind of the function arrow `:kind (->)` include question marks `(->) :: ?? -> ? -> *`? [duplicate]
Possible Duplicate:
Haskell Weird Kinds: Kind of (->) is ?? -> ? -> *
In GHCi (version 7.0.2), if I ask for the kind of the function type, the result has question marks:
...
3
votes
1answer
166 views
How to find type signatures of multiple imported methods in GHCI
I'm using a library, which I've loaded into GHCI.
From the names of the functions is not obvious to me which one I should be using; I'm sure it exists, and want to see a list of type signatures of ...
2
votes
4answers
729 views
Is it possible to define new ADTs in GHCi
While commenting on new features in ghci I wished that ghci had the ability to declare type declaration and declaring new ADT types, someone informed that it was indeed possible, and after searching I ...
14
votes
2answers
1k views
How to provide explicit type declarations for functions when using GHCi?
How to I define the equivalent of this function (taken from learnyouahaskell) inside GHCi?
import Data.List
numUniques :: (Eq a) => [a] -> Int
numUniques = length . nub
Without the ...
9
votes
2answers
412 views
Can GHCi tell me the type of a local Haskell function?
Is it possible to query the ghci for the type it inferred for a function inside another function?