summaryrefslogtreecommitdiff
path: root/libraries/base
diff options
context:
space:
mode:
authorBas van Dijk <v.dijk.bas@gmail.com>2011-12-07 15:37:31 +0100
committerIan Lynagh <igloo@earth.li>2012-01-13 23:50:23 +0000
commit3af923c50e161d4650bd981876adcb713e999b21 (patch)
treed19c84a79dc8a2fa472ab8990f1b8a1b66f9dc09 /libraries/base
parent4b60b567d4174e793aea7a92d672af130a1c98d5 (diff)
downloadhaskell-3af923c50e161d4650bd981876adcb713e999b21.tar.gz
Moved the instances from Control.Monad.Instances to GHC.Base and Data.Either
Diffstat (limited to 'libraries/base')
-rw-r--r--libraries/base/Control/Applicative.hs1
-rw-r--r--libraries/base/Control/Monad/Fix.hs6
-rw-r--r--libraries/base/Control/Monad/Instances.hs22
-rw-r--r--libraries/base/Data/Either.hs9
-rw-r--r--libraries/base/GHC/Base.lhs10
5 files changed, 21 insertions, 27 deletions
diff --git a/libraries/base/Control/Applicative.hs b/libraries/base/Control/Applicative.hs
index 248bbacd40..bf58bea1bd 100644
--- a/libraries/base/Control/Applicative.hs
+++ b/libraries/base/Control/Applicative.hs
@@ -50,7 +50,6 @@ import Prelude hiding (id,(.))
import Control.Category
import Control.Arrow (Arrow(arr, (&&&)), ArrowZero(zeroArrow), ArrowPlus((<+>)))
import Control.Monad (liftM, ap, MonadPlus(..))
-import Control.Monad.Instances ()
#ifndef __NHC__
import Control.Monad.ST.Safe (ST)
import qualified Control.Monad.ST.Lazy.Safe as Lazy (ST)
diff --git a/libraries/base/Control/Monad/Fix.hs b/libraries/base/Control/Monad/Fix.hs
index b1fe43d619..a3d2c89d85 100644
--- a/libraries/base/Control/Monad/Fix.hs
+++ b/libraries/base/Control/Monad/Fix.hs
@@ -27,7 +27,6 @@ module Control.Monad.Fix (
import Prelude
import System.IO
-import Control.Monad.Instances ()
import Data.Function (fix)
#ifdef __HUGS__
import Hugs.Prelude (MonadFix(mfix))
@@ -65,24 +64,19 @@ class (Monad m) => MonadFix m where
-- Instances of MonadFix for Prelude monads
--- Maybe:
instance MonadFix Maybe where
mfix f = let a = f (unJust a) in a
where unJust (Just x) = x
unJust Nothing = error "mfix Maybe: Nothing"
--- List:
instance MonadFix [] where
mfix f = case fix (f . head) of
[] -> []
(x:_) -> x : mfix (tail . f)
--- IO:
instance MonadFix IO where
mfix = fixIO
--- Prelude types with Monad instances in Control.Monad.Instances
-
instance MonadFix ((->) r) where
mfix f = \ r -> let a = f a r in a
diff --git a/libraries/base/Control/Monad/Instances.hs b/libraries/base/Control/Monad/Instances.hs
index 3849e3b7bd..f30f7a4ab2 100644
--- a/libraries/base/Control/Monad/Instances.hs
+++ b/libraries/base/Control/Monad/Instances.hs
@@ -13,29 +13,11 @@
-- Stability : provisional
-- Portability : portable
--
+-- /This module is DEPRECATED and will be removed in the future!/
+--
-- 'Functor' and 'Monad' instances for @(->) r@ and
-- 'Functor' instances for @(,) a@ and @'Either' a@.
module Control.Monad.Instances (Functor(..),Monad(..)) where
import Prelude
-
-instance Functor ((->) r) where
- fmap = (.)
-
-instance Monad ((->) r) where
- return = const
- f >>= k = \ r -> k (f r) r
-
-instance Functor ((,) a) where
- fmap f (x,y) = (x, f y)
-
-instance Functor (Either a) where
- fmap _ (Left x) = Left x
- fmap f (Right y) = Right (f y)
-
-instance Monad (Either e) where
- return = Right
- Left l >>= _ = Left l
- Right r >>= k = k r
-
diff --git a/libraries/base/Data/Either.hs b/libraries/base/Data/Either.hs
index cdfa76106a..46d5c40a44 100644
--- a/libraries/base/Data/Either.hs
+++ b/libraries/base/Data/Either.hs
@@ -56,6 +56,15 @@ hold a correct value (mnemonic: \"right\" also means \"correct\").
data Either a b = Left a | Right b
deriving (Eq, Ord, Read, Show, Generic)
+instance Functor (Either a) where
+ fmap _ (Left x) = Left x
+ fmap f (Right y) = Right (f y)
+
+instance Monad (Either e) where
+ return = Right
+ Left l >>= _ = Left l
+ Right r >>= k = k r
+
-- | Case analysis for the 'Either' type.
-- If the value is @'Left' a@, apply the first function to @a@;
-- if it is @'Right' b@, apply the second function to @b@.
diff --git a/libraries/base/GHC/Base.lhs b/libraries/base/GHC/Base.lhs
index e062a3687f..4b107671b6 100644
--- a/libraries/base/GHC/Base.lhs
+++ b/libraries/base/GHC/Base.lhs
@@ -229,6 +229,16 @@ class Monad m where
{-# INLINE (>>) #-}
m >> k = m >>= \_ -> k
fail s = error s
+
+instance Functor ((->) r) where
+ fmap = (.)
+
+instance Monad ((->) r) where
+ return = const
+ f >>= k = \ r -> k (f r) r
+
+instance Functor ((,) a) where
+ fmap f (x,y) = (x, f y)
\end{code}