-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Infinite precision arithmetic using continued fractions -- @package cf @version 0.1 module Math.ContinuedFraction data CF -- | Produce a list of rational approximations to a number convergents :: CF -> [Rational] -- | Produce a list of digits in a given base digits :: Integer -> CF -> [Integer] -- | Produce a decimal representation of a number showCF :: CF -> String sqrt2 :: CF exp1 :: CF instance RealFrac CF instance Real CF instance Fractional CF instance Enum CF instance Num CF instance Ord CF instance Eq CF instance Show CF