ZVON > References > Haskell reference
| Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: Prelude
Datatype: Int
Description: Fixed-precision integers (class Integral). The finite-precision integer type Int covers at least the range [ - 229, 229 - 1]. As Int is an instance of the Bounded class, maxBound and minBound can be used to determine the exact Int range defined by an implementation.
Definition:
In function types: [a] -> Int -> a : (!!)
Int -> ReadS a : readsPrec
Int -> a -> ShowS : showsPrec
a -> Integer : floatRadix, toInteger
[a] -> Int : length
a -> Int : exponent, floatDigits, fromEnum
a -> (Int,Int) : floatRange
a -> (Integer,Int) : decodeFloat
Integer -> Int -> a : encodeFloat
Int -> a -> a : scaleFloat
Integer -> a : fromInteger
Int -> a : toEnum
Int -> a -> [a] : replicate
Int -> [a] -> [a] : drop, take
Int -> [a] -> ([a],[a]) : splitAt
Int :
Integer :