Tagged Questions
13
votes
3answers
226 views
Find inferred type for local function
Is there a way in ghci (or ghc) to find what the inferred type of a local function is?
E.g. if I have a function
f l = map f' l
where f' = (+1)
is there a :t-like way in ghci to see what the ...
4
votes
1answer
114 views
What is going on when I compose “show” and “read” in Haskell?
Here's a short transcript from GHCi:
Prelude> :t read
read :: Read a => String -> a
Prelude> :t show
show :: Show a => a -> String
Prelude> :t show.read
show.read :: String -> ...
11
votes
1answer
199 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 ...
3
votes
5answers
636 views
Type inference in GHCi vs. manual signature
when I type
:t map length . sum
into GHCi, it says that the type would be:
map length . sum :: Num [[a]] => [[[a]]] -> [Int]
However, if I create a file type-test.hs containing
x :: Num ...
6
votes
1answer
296 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 ...
2
votes
2answers
221 views
Haskell: Why is the type inferred by GHC for main method not quite complete?
For example, take the code written by Don Stewart in reply to some Stack Overflow question:
import Control.Monad
import qualified Data.HashTable as H
import System.Environment
main = do
[size] ...
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?
