{- |
The only point of this module is
to reexport items that we want from the standard Prelude.
-}

module NumericPrelude.Base (module Prelude, ifThenElse, ) where
import Prelude hiding (
       Int, Integer, Float, Double, Rational, Num(..), Real(..),
       Integral(..), Fractional(..), Floating(..), RealFrac(..),
       RealFloat(..), subtract, even, odd,
       gcd, lcm, (^), (^^), sum, product,
       fromIntegral, fromRational, )
import Data.Bool.HT (ifThenElse, )