-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Various floating point limit related constants. -- -- Various floating point limit related constants. @package numeric-limits @version 0.1.0.0 -- | Various floating point limit related numerical constants. module Numeric.Limits -- | The number of decimal digits that the type can represent without loss -- of precision. digits10 :: RealFloat a => a -> Int -- | The difference between 1 and the smallest value greater than 1 that is -- representable for the type. epsilon :: RealFloat a => a -- | The maximum finite value for the type. maxValue :: RealFloat a => a -- | The minimum (positive) normalized value for the type. minValue :: RealFloat a => a -- | Infinity value if the type supports it. infinity :: RealFloat a => a -- | Not-a-number value if the type supports it. nan :: RealFloat a => a