summaryrefslogtreecommitdiff
path: root/libraries/base/Numeric.hs
diff options
context:
space:
mode:
authorDan Doel <dan.doel@gmail.com>2015-12-20 15:19:52 +0100
committerBen Gamari <ben@smart-cactus.org>2015-12-21 13:01:36 +0100
commit6457903e7671b6096d2cca5d965f43daee3572a6 (patch)
tree6d401f671fc73fbe04a49421e0456654c27d662b /libraries/base/Numeric.hs
parentedcf17bd2ae503c2dda43ded40dca0950edfd018 (diff)
downloadhaskell-6457903e7671b6096d2cca5d965f43daee3572a6.tar.gz
Implement phase 1 of expanded Floating
- This part of the proposal is to add log1p, expm1, log1pexp and log1mexp to the Floating class, and export the full Floating class from Numeric Reviewers: ekmett, #core_libraries_committee, bgamari, hvr, austin Reviewed By: ekmett, #core_libraries_committee, bgamari Subscribers: Phyx, RyanGlScott, ekmett, thomie Differential Revision: https://phabricator.haskell.org/D1605 GHC Trac Issues: #11166
Diffstat (limited to 'libraries/base/Numeric.hs')
-rw-r--r--libraries/base/Numeric.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/libraries/base/Numeric.hs b/libraries/base/Numeric.hs
index 4e24bfe7a8..51be3a1698 100644
--- a/libraries/base/Numeric.hs
+++ b/libraries/base/Numeric.hs
@@ -56,6 +56,7 @@ module Numeric (
-- * Miscellaneous
fromRat,
+ Floating(..)
) where