[Haskell-cafe] Minimum Int?

Don Stewart dons at galois.com
Mon Mar 9 16:44:33 EDT 2009


colin:
> Is there a function that yields the minimum value of Int on an implementation?

    Prelude> minBound :: Int
    -9223372036854775808

    Prelude> maxBound :: Int
    9223372036854775807


More information about the Haskell-Cafe mailing list