Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Synopsis
- type (:->) p q = forall a b. p a b -> q a b
- class BifunctorFunctor t where
- class BifunctorFunctor t => BifunctorMonad t where
- biliftM :: BifunctorMonad t => (p :-> q) -> t p :-> t q
- class BifunctorFunctor t => BifunctorComonad t where
- biliftW :: BifunctorComonad t => (p :-> q) -> t p :-> t q
Documentation
type (:->) p q = forall a b. p a b -> q a b infixr 0 Source #
Using parametricity as an approximation of a natural transformation in two arguments.
class BifunctorFunctor t where Source #
Instances
BifunctorFunctor ( Flip :: (k1 -> k2 -> Type ) -> k2 -> k1 -> Type ) Source # | |
BifunctorFunctor ( Product p :: (k1 -> k2 -> Type ) -> k1 -> k2 -> Type ) Source # | |
BifunctorFunctor ( Sum p :: (k1 -> k2 -> Type ) -> k1 -> k2 -> Type ) Source # | |
Functor f => BifunctorFunctor ( Tannen f :: (k1 -> k2 -> Type ) -> k1 -> k2 -> Type ) Source # | |
class BifunctorFunctor t => BifunctorMonad t where Source #
Instances
BifunctorMonad ( Sum p :: (k1 -> k2 -> Type ) -> k1 -> k2 -> Type ) Source # | |
( Functor f, Monad f) => BifunctorMonad ( Tannen f :: (k1 -> k2 -> Type ) -> k1 -> k2 -> Type ) Source # | |
Defined in Data.Bifunctor.Tannen |
class BifunctorFunctor t => BifunctorComonad t where Source #
biextract , ( biextend | biduplicate )
biextract :: t p :-> p Source #
biextend :: (t p :-> q) -> t p :-> t q Source #
biduplicate :: t p :-> t (t p) Source #
Instances
BifunctorComonad ( Product p :: (k1 -> k2 -> Type ) -> k1 -> k2 -> Type ) Source # | |
Defined in Data.Bifunctor.Product biextract :: forall (p0 :: k -> k -> Type ). Product p p0 :-> p0 Source # biextend :: forall (p0 :: k -> k -> Type ) (q :: k -> k -> Type ). ( Product p p0 :-> q) -> Product p p0 :-> Product p q Source # biduplicate :: forall (p0 :: k -> k -> Type ). Product p p0 :-> Product p ( Product p p0) Source # |
|
Comonad f => BifunctorComonad ( Tannen f :: (k1 -> k2 -> Type ) -> k1 -> k2 -> Type ) Source # | |
Defined in Data.Bifunctor.Tannen |