number/src/Data/Number.hs
2015-06-01 22:55:25 +02:00

19 lines
391 B
Haskell
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- | A library for real number arithmetics
module Data.Number
( -- * Classes
Continued(..), Number
, Nat(..), Whole(..)
-- * Functions
, fromList, toList
, fromNumber, toNumber
-- * Constants
, σ, φ, π, e
-- * Internals
, operator, cut
) where
import Data.Number.Types
import Data.Number.Instances
import Data.Number.Functions
import Data.Number.Internal
import Data.Number.Peano