vote up 0 vote down star

I am writing a function in Haskell that deals with numbers beyond the length of a 32 bit int. I cannot find the type to do this and I seem to be searching for the wrong terms.

It needs to be able to hold numbers with the length of about 2^40 without any loss of precision

Example:

addTwo :: Int -> Int -> Int
addTwo a b = a + b

main :: IO()
main = do
    putStrLn ( show ( addTwo 700851475143 1 ) )
flag

1  
ironically, if you hadn't put the signature for addTwo in, it would have worked, because addTwo would have been inferred to be polymorphic (i.e. Num a => a -> a -> a), and then for the numbers, it would have defaulted to the most general type, which is Integer – newacct Jun 15 at 0:38
1  
But I wouldn't have learnt anything, which is the whole point – Yacoby Jun 15 at 8:46

4 Answers

vote up 12 vote down check

For unbounded precision, use the Integer type. For 64 bits of precision, across platforms, use Data.Int.Int64. Both will be easy to find with Hoogle: http://haskell.org/hoogle/

link|flag
vote up 6 vote down

You want the Integer data type instead of Int:

addTwo :: Integer -> Integer -> Integer
link|flag
vote up 1 vote down

Use Integer, which is unlimited precision, instead of Int.

link|flag
vote up 2 vote down

From Learn You a Haskell for Great Good!:

"Int stands for integer. It's used for whole numbers. 7 can be an Int but 7.2 cannot. Int is bounded, which means that it has a minimum and a maximum value. Usually on 32-bit machines the maximum possible Int is 2147483647 and the minimum is -2147483648.

Integer stands for, er … also integer. The main difference is that it's not bounded so it can be used to represent really really big numbers. I mean like really big. Int, however, is more efficient."

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.