5861981344104a33eb8f86aa419e4b084bdfb55e
[altfloat.git] / Data / Floating / Prelude.hs
blob5861981344104a33eb8f86aa419e4b084bdfb55e
1 {-
2 - Copyright (C) 2009 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 -- | Alternate prelude for the alternate floating point types. This module
10 -- re-exports the Data.Floating and Data.Poset operations as well as all the
11 -- Prelude operations that do not conflict.
12 module Data.Floating.Prelude (
13 module Data.Floating,
14 module Data.Poset,
15 module Prelude
16 ) where
18 import Prelude hiding (
19 Floating(..), RealFloat(..),
20 Ordering(..), Ord(..),
21 Double, Float,
22 round, truncate, ceiling, floor
24 import Data.Floating
25 import Data.Poset