floating: Add a new Data.Floating.Types module.
[altfloat.git] / Data / Floating / Types.hs
blob4b8585973acdac053fd33e45098a4a786a164a32
1 {-
2 - Copyright (C) 2010 Nick Bowler.
4 - License BSD2: 2-clause BSD license. See LICENSE for full terms.
5 - This is free software: you are free to change and redistribute it.
6 - There is NO WARRANTY, to the extent permitted by law.
7 -}
9 -- | Floating point types, classes and instances. The class interface is
10 -- loosely based off of the C standard library; if a function here has the
11 -- same name as a C function, it should behave similarly.
12 module Data.Floating.Types (
13 module Data.Floating.Types.Core
14 ) where
16 import Data.Floating.Types.Core
17 import Data.Floating.Types.Double ()
18 import Data.Floating.Types.Float ()
19 import Data.Floating.Types.CMath ()