category-extras-0.51.0: src/Control/Functor/Adjunction/HigherOrder.hs
-----------------------------------------------------------------------------
-- |
-- Module : Control.Functor.Adjunction.HigherOrder
-- Copyright : (C) 2008 Edward Kmett
-- License : BSD-style (see the file LICENSE)
--
-- Maintainer : Edward Kmett <ekmett@gmail.com>
-- Stability : experimental
-- Portability : non-portable (rank-2 polymorphism)
--
-- Higher-Order Adjunctions
----------------------------------------------------------------------------
module Control.Functor.Adjunction.HigherOrder
( HAdjunction(..)
) where
import Control.Functor.HigherOrder
import Control.Functor.HigherOrder.Composition
import Control.Functor.Extras
class (HFunctor f, HFunctor g) => HAdjunction f g where
hunit :: a :~> g (f a)
hcounit :: f (g b) :~> b
hleftAdjunct :: (f a :~> b) -> a :~> g b
hrightAdjunct :: (a :~> g b) -> f a :~> b
hunit = hleftAdjunct id
hcounit = hrightAdjunct id
hleftAdjunct f = hfmap f . hunit
hrightAdjunct f = hcounit . hfmap f
instance (HAdjunction f1 g1, HAdjunction f2 g2) => HAdjunction (CompH f2 f1) (CompH g1 g2) where
hcounit = hcounit . hfmap (hcounit . hfmap hdecompose) . hdecompose
hunit = hcompose . hfmap (hfmap hcompose . hunit) . hunit