-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | ieee-utils -- -- IEEE 754 (Standard for Binary Floating-Point Arithmetic) Utilities. @package ieee-utils @version 0.1 module Numeric.IEEE.RoundMode data RoundMode ToNearest :: RoundMode Upward :: RoundMode Downward :: RoundMode TowardZero :: RoundMode -- | Get the fpu's current rounding mode. getRound :: IO RoundMode -- | Set the fpu's rounding mode. Returns True if successful. setRound :: RoundMode -> IO Bool instance Eq RoundMode instance Ord RoundMode instance Show RoundMode instance Read RoundMode instance Enum RoundMode