mixed-types-num-0.3.2: src/Numeric/MixedTypes/PreludeHiding.hs
{-|
Module : Numeric.MixedType.PreludeHiding
Description : Prelude without operations that clash with MixedTypes
Copyright : (c) Michal Konecny
License : BSD3
Maintainer : mikkonecny@gmail.com
Stability : experimental
Portability : portable
Prelude without operations that clash with MixedTypes
-}
module Numeric.MixedTypes.PreludeHiding
(
module Prelude
)
where
import Prelude hiding
(
fromInteger, fromRational
, (!!), length, replicate, take, drop, splitAt
, Eq(..), Ord(..), Num(..), Fractional(..), RealFrac(..), Floating(..), Integral(..)
, not, (&&), (||), and, or
, (^), (^^)
, minimum, maximum, sum, product
, isInfinite, isNaN
)