Moved Data.Poset to ordered; reflect this change.
[altfloat.git] / Data / Floating / Prelude.hs
blob3aed686a2b95516d680ad1837eef1b0c7778c506
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.Roundable,
15 module Prelude
16 ) where
18 import Prelude hiding (
19 Floating(..), RealFloat(..),
20 Double, Float,
21 round, truncate, ceiling, floor
24 import Data.Floating
25 import Data.Roundable