| Copyright | (C) 2014-2015 Edward Kmett |
|---|---|
| License | BSD-style (see the file LICENSE) |
| Maintainer | Edward Kmett <ekmett@gmail.com> |
| Stability | experimental |
| Portability | GADTs, TFs, MPTCs, RankN |
| Safe Haskell | Safe |
| Language | Haskell2010 |
Data.Profunctor.Composition
Contents
Description
Synopsis
- data Procompose p q d c where
- Procompose :: p x c -> q d x -> Procompose p q d c
- procomposed :: Category p => Procompose p p a b -> p a b
- idl :: Profunctor q => Iso (Procompose (->) q d c) (Procompose (->) r d' c') (q d c) (r d' c')
- idr :: Profunctor q => Iso (Procompose q (->) d c) (Procompose r (->) d' c') (q d c) (r d' c')
- assoc :: Iso (Procompose p (Procompose q r) a b) (Procompose x (Procompose y z) a b) (Procompose (Procompose p q) r a b) (Procompose (Procompose x y) z a b)
- eta :: (Profunctor p, Category p) => (->) :-> p
- mu :: Category p => Procompose p p :-> p
- stars :: Functor g => Iso (Procompose (Star f) (Star g) d c) (Procompose (Star f') (Star g') d' c') (Star (Compose g f) d c) (Star (Compose g' f') d' c')
- kleislis :: Monad g => Iso (Procompose (Kleisli f) (Kleisli g) d c) (Procompose (Kleisli f') (Kleisli g') d' c') (Kleisli (Compose g f) d c) (Kleisli (Compose g' f') d' c')
- costars :: Functor f => Iso (Procompose (Costar f) (Costar g) d c) (Procompose (Costar f') (Costar g') d' c') (Costar (Compose f g) d c) (Costar (Compose f' g') d' c')
- cokleislis :: Functor f => Iso (Procompose (Cokleisli f) (Cokleisli g) d c) (Procompose (Cokleisli f') (Cokleisli g') d' c') (Cokleisli (Compose f g) d c) (Cokleisli (Compose f' g') d' c')
- newtype Rift p q a b = Rift {
- runRift :: forall x. p b x -> q a x
- decomposeRift :: Procompose p (Rift p q) :-> q
Profunctor Composition
data Procompose p q d c where Source #
is the Procompose p qProfunctor composition of the
Profunctor s p and q.
For a good explanation of Profunctor composition in Haskell
see Dan Piponi's article:
Constructors
Instances
Methods
proreturn :: Profunctor p => p :-> Procompose p p Source #
projoin :: Profunctor p => Procompose p (Procompose p p) :-> Procompose p p Source #
Methods
promap :: Profunctor p => (p :-> q) -> Procompose p p :-> Procompose p q Source #
Methods
unit :: Profunctor p => p :-> Rift p (Procompose p p) Source #
counit :: Profunctor p => Procompose p (Rift p p) :-> p Source #
Methods
dimap :: (a -> b) -> (c -> d) -> Procompose p q b c -> Procompose p q a d Source #
lmap :: (a -> b) -> Procompose p q b c -> Procompose p q a c Source #
rmap :: (b -> c) -> Procompose p q a b -> Procompose p q a c Source #
(#.) :: Coercible * c b => (b -> c) -> Procompose p q a b -> Procompose p q a c Source #
(.#) :: Coercible * b a => Procompose p q b c -> (a -> b) -> Procompose p q a c Source #
Methods
unfirst :: Procompose p q (a, d) (b, d) -> Procompose p q a b Source #
unsecond :: Procompose p q (d, a) (d, b) -> Procompose p q a b Source #
Methods
first' :: Procompose p q a b -> Procompose p q (a, c) (b, c) Source #
second' :: Procompose p q a b -> Procompose p q (c, a) (c, b) Source #
Methods
left' :: Procompose p q a b -> Procompose p q (Either a c) (Either b c) Source #
right' :: Procompose p q a b -> Procompose p q (Either c a) (Either c b) Source #
Methods
closed :: Procompose p q a b -> Procompose p q (x -> a) (x -> b) Source #
Methods
traverse' :: Traversable f => Procompose p q a b -> Procompose p q (f a) (f b) Source #
wander :: (forall f. Applicative f => (a -> f b) -> s -> f t) -> Procompose p q a b -> Procompose p q s t Source #
Methods
map' :: Functor f => Procompose p q a b -> Procompose p q (f a) (f b) Source #
Methods
cotabulate :: (Corep (Procompose p q) d -> c) -> Procompose p q d c Source #
The composition of two Representable Profunctor s is Representable by
the composition of their representations.
Methods
tabulate :: (d -> Rep (Procompose p q) c) -> Procompose p q d c Source #
Methods
fmap :: (a -> b) -> Procompose p q a a -> Procompose p q a b #
(<$) :: a -> Procompose p q a b -> Procompose p q a a #
procomposed :: Category p => Procompose p p a b -> p a b Source #
Unitors and Associator
idl :: Profunctor q => Iso (Procompose (->) q d c) (Procompose (->) r d' c') (q d c) (r d' c') Source #
(->) functions as a lax identity for Profunctor composition.
This provides an Iso for the lens package that witnesses the
isomorphism between and Procompose (->) q d cq d c, which
is the left identity law.
idl::Profunctorq => Iso' (Procompose(->) q d c) (q d c)
idr :: Profunctor q => Iso (Procompose q (->) d c) (Procompose r (->) d' c') (q d c) (r d' c') Source #
(->) functions as a lax identity for Profunctor composition.
This provides an Iso for the lens package that witnesses the
isomorphism between and Procompose q (->) d cq d c, which
is the right identity law.
idr::Profunctorq => Iso' (Procomposeq (->) d c) (q d c)
assoc :: Iso (Procompose p (Procompose q r) a b) (Procompose x (Procompose y z) a b) (Procompose (Procompose p q) r a b) (Procompose (Procompose x y) z a b) Source #
The associator for Profunctor composition.
This provides an Iso for the lens package that witnesses the
isomorphism between and
Procompose p (Procompose q r) a b, which arises because
Procompose (Procompose p q) r a bProf is only a bicategory, rather than a strict 2-category.
Categories as monoid objects
eta :: (Profunctor p, Category p) => (->) :-> p Source #
a Category that is also a Profunctor is a Monoid in Prof
Generalized Composition
stars :: Functor g => Iso (Procompose (Star f) (Star g) d c) (Procompose (Star f') (Star g') d' c') (Star (Compose g f) d c) (Star (Compose g' f') d' c') Source #
Profunctor composition generalizes Functor composition in two ways.
This is the first, which shows that exists b. (a -> f b, b -> g c) is
isomorphic to a -> f (g c).
stars::Functorf => Iso' (Procompose(Starf) (Starg) d c) (Star(Composef g) d c)
kleislis :: Monad g => Iso (Procompose (Kleisli f) (Kleisli g) d c) (Procompose (Kleisli f') (Kleisli g') d' c') (Kleisli (Compose g f) d c) (Kleisli (Compose g' f') d' c') Source #
costars :: Functor f => Iso (Procompose (Costar f) (Costar g) d c) (Procompose (Costar f') (Costar g') d' c') (Costar (Compose f g) d c) (Costar (Compose f' g') d' c') Source #
Profunctor composition generalizes Functor composition in two ways.
This is the second, which shows that exists b. (f a -> b, g b -> c) is
isomorphic to g (f a) -> c.
costars::Functorf => Iso' (Procompose(Costarf) (Costarg) d c) (Costar(Composeg f) d c)
cokleislis :: Functor f => Iso (Procompose (Cokleisli f) (Cokleisli g) d c) (Procompose (Cokleisli f') (Cokleisli g') d' c') (Cokleisli (Compose f g) d c) (Cokleisli (Compose f' g') d' c') Source #
This is a variant on costars that uses Cokleisli instead
of Costar .
cokleislis::Functorf => Iso' (Procompose(Cokleislif) (Cokleislig) d c) (Cokleisli(Composeg f) d c)
Right Kan Lift
This represents the right Kan lift of a Profunctor q along a Profunctor p in a limited version of the 2-category of Profunctors where the only object is the category Hask, 1-morphisms are profunctors composed and compose with Profunctor composition, and 2-morphisms are just natural transformations.
Instances
Methods
proextract :: Profunctor p => Rift p p :-> p Source #
produplicate :: Profunctor p => Rift p p :-> Rift p (Rift p p) Source #
Methods
unit :: Profunctor p => p :-> Rift p (Procompose p p) Source #
counit :: Profunctor p => Procompose p (Rift p p) :-> p Source #
forms a Rift p pMonad in the Profunctor 2-category, which is isomorphic to a Haskell Category instance.
Methods
dimap :: (a -> b) -> (c -> d) -> Rift p q b c -> Rift p q a d Source #
lmap :: (a -> b) -> Rift p q b c -> Rift p q a c Source #
rmap :: (b -> c) -> Rift p q a b -> Rift p q a c Source #
(#.) :: Coercible * c b => (b -> c) -> Rift p q a b -> Rift p q a c Source #
(.#) :: Coercible * b a => Rift p q b c -> (a -> b) -> Rift p q a c Source #
decomposeRift :: Procompose p (Rift p q) :-> q Source #
The 2-morphism that defines a left Kan lift.
Note: When p is right adjoint to then Rift p (->)decomposeRift is the counit of the adjunction.