{-# OPTIONS_GHC -fglasgow-exts #-} ------------------------------------------------------------------------------------------- -- | -- Module : Control.Functor.Representable -- Copyright : 2008 Edward Kmett -- License : BSD -- -- Maintainer : Edward Kmett -- Stability : experimental -- Portability : non-portable (class-associated types) -- ------------------------------------------------------------------------------------------- module Control.Functor.Representable ( Representable, rep, unrep , Corepresentable, corep, uncorep , Both(..), EitherF(..) ) where import Control.Functor.Internal.Adjunction