David Feuer writes:
 :
 | Question:  Is there any standard way in Haskell of determining the
 | maximal and minimal Int values?

Yes, instance Bounded Int, which means you can use

    maxBound :: Int

and

    minBound :: Int
_______________________________________________
Haskell mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell

Reply via email to