bifunctors-5: src/Data/Bifunctor/Biff.hs
-----------------------------------------------------------------------------
-- |
-- Copyright : (C) 2008-2015 Edward Kmett
-- License : BSD-style (see the file LICENSE)
--
-- Maintainer : Edward Kmett <ekmett@gmail.com>
-- Stability : provisional
-- Portability : portable
--
----------------------------------------------------------------------------
module Data.Bifunctor.Biff
( Biff(..)
) where
import Control.Applicative
import Data.Biapplicative
import Data.Bifoldable
import Data.Bitraversable
import Data.Foldable
import Data.Monoid
import Data.Traversable
-- | Compose two 'Functor's on the inside of a 'Bifunctor'.
newtype Biff p f g a b = Biff { runBiff :: p (f a) (g b) }
deriving (Eq,Ord,Show,Read)
instance (Bifunctor p, Functor f, Functor g) => Bifunctor (Biff p f g) where
first f = Biff . first (fmap f) . runBiff
{-# INLINE first #-}
second f = Biff . second (fmap f) . runBiff
{-# INLINE second #-}
bimap f g = Biff . bimap (fmap f) (fmap g) . runBiff
{-# INLINE bimap #-}
instance (Bifunctor p, Functor g) => Functor (Biff p f g a) where
fmap f = Biff . second (fmap f) . runBiff
{-# INLINE fmap #-}
instance (Biapplicative p, Applicative f, Applicative g) => Biapplicative (Biff p f g) where
bipure a b = Biff (bipure (pure a) (pure b))
{-# INLINE bipure #-}
Biff fg <<*>> Biff xy = Biff (bimap (<*>) (<*>) fg <<*>> xy)
{-# INLINE (<<*>>) #-}
instance (Bifoldable p, Foldable g) => Foldable (Biff p f g a) where
foldMap f = bifoldMap (const mempty) (foldMap f) . runBiff
{-# INLINE foldMap #-}
instance (Bifoldable p, Foldable f, Foldable g) => Bifoldable (Biff p f g) where
bifoldMap f g = bifoldMap (foldMap f) (foldMap g) . runBiff
{-# INLINE bifoldMap #-}
instance (Bitraversable p, Traversable g) => Traversable (Biff p f g a) where
traverse f = fmap Biff . bitraverse pure (traverse f) . runBiff
{-# INLINE traverse #-}
instance (Bitraversable p, Traversable f, Traversable g) => Bitraversable (Biff p f g) where
bitraverse f g = fmap Biff . bitraverse (traverse f) (traverse g) . runBiff
{-# INLINE bitraverse #-}