linear-1.1.4: src/Linear/Instances.hs
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# LANGUAGE CPP #-}
#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702
{-# LANGUAGE Trustworthy #-}
#endif
-----------------------------------------------------------------------------
-- |
-- Copyright : (C) 2012 Edward Kmett
-- License : BSD-style (see the file LICENSE)
-- Maintainer : Edward Kmett <ekmett@gmail.com>
-- Stability : provisional
-- Portability : portable
--
-- Orphans
-----------------------------------------------------------------------------
module Linear.Instances () where
import Control.Applicative
import Data.Complex
import Data.Foldable
import Data.Functor.Bind
import Data.HashMap.Lazy as HashMap
import Data.Hashable
import Data.Semigroup
import Data.Semigroup.Foldable
import Data.Semigroup.Traversable
import Data.Traversable
instance (Hashable k, Eq k) => Apply (HashMap k) where
(<.>) = HashMap.intersectionWith id
instance (Hashable k, Eq k) => Bind (HashMap k) where
-- this is needlessly painful
m >>- f = HashMap.fromList $ do
(k, a) <- HashMap.toList m
case HashMap.lookup k (f a) of
Just b -> [(k,b)]
Nothing -> []
instance Functor Complex where
fmap f (a :+ b) = f a :+ f b
{-# INLINE fmap #-}
instance Apply Complex where
(a :+ b) <.> (c :+ d) = a c :+ b d
instance Applicative Complex where
pure a = a :+ a
(a :+ b) <*> (c :+ d) = a c :+ b d
instance Bind Complex where
(a :+ b) >>- f = a' :+ b' where
a' :+ _ = f a
_ :+ b' = f b
{-# INLINE (>>-) #-}
instance Monad Complex where
return a = a :+ a
{-# INLINE return #-}
(a :+ b) >>= f = a' :+ b' where
a' :+ _ = f a
_ :+ b' = f b
{-# INLINE (>>=) #-}
instance Foldable Complex where
foldMap f (a :+ b) = f a `mappend` f b
{-# INLINE foldMap #-}
instance Traversable Complex where
traverse f (a :+ b) = (:+) <$> f a <*> f b
{-# INLINE traverse #-}
instance Foldable1 Complex where
foldMap1 f (a :+ b) = f a <> f b
{-# INLINE foldMap1 #-}
instance Traversable1 Complex where
traverse1 f (a :+ b) = (:+) <$> f a <.> f b
{-# INLINE traverse1 #-}