Skip to content

Commit

Permalink
Have the prelude export product at a more general type.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmcclean committed Mar 5, 2014
1 parent e6b8ccb commit cdac67a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Numeric/Units/Dimensional/DK/Prelude.hs
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ import Numeric.NumType.DK
) -- Used in exponents. ) -- Used in exponents.


import Data.Foldable import Data.Foldable
( minimum, maximum ) ( product, minimum, maximum )


import Prelude hiding import Prelude hiding
( (+), (-), (*), (/), (^), (**) ( (+), (-), (*), (/), (^), (**)
, abs, negate, pi, exp, log, sqrt , abs, negate, pi, exp, log, sqrt
, sin, cos, tan, asin, acos, atan, atan2 , sin, cos, tan, asin, acos, atan, atan2
, sinh, cosh, tanh, asinh, acosh, atanh , sinh, cosh, tanh, asinh, acosh, atanh
, sum, minimum, maximum , sum, product, minimum, maximum
) -- Hide definitions overridden by 'Numeric.Dimensional'. ) -- Hide definitions overridden by 'Numeric.Dimensional'.

0 comments on commit cdac67a

Please sign in to comment.