What in Haskell differs from Int ant Integer? In what documentation can i find such things?
Thank you
|
|
Source: The Haskell Wikibook. Also, you may find the Numbers section of A Gentle Introduction to Haskell useful. |
||||
http://www.haskell.org/pipermail/haskell-cafe/2005-May/009906.html |
|||
|
|
|
Int is the C int, which means its values range from -2147483647 to 2147483647, while an Integer range from the whole Z set, that means, it can be arbitrarily large.
Notice the value of the Int literal. |
|||
|
|
...
from the Haskell report: http://www.haskell.org/onlinereport/basic.html#numbers |
|||
|
|