Portability | portable |
---|---|
Stability | provisional |
Maintainer | Edward Kmett <ekmett@gmail.com> |
Safe Haskell | Trustworthy |
For a good explanation of profunctors in Haskell see Dan Piponi's article:
http://blog.sigfpe.com/2011/07/profunctors-in-haskell.html
For more information on strength and costrength, see:
http://comonad.com/reader/2008/deriving-strength-from-laziness/
- class Profunctor p where
- class Profunctor p => Strong p where
- class Profunctor p => Choice p where
- newtype UpStar f d c = UpStar {
- runUpStar :: d -> f c
- newtype DownStar f d c = DownStar {
- runDownStar :: f d -> c
- newtype WrappedArrow p a b = WrapArrow {
- unwrapArrow :: p a b
- newtype Forget r a b = Forget {
- runForget :: a -> r
Profunctors
class Profunctor p whereSource
Formally, the class Profunctor
represents a profunctor
from Hask
-> Hask
.
Intuitively it is a bifunctor where the first argument is contravariant and the second argument is covariant.
You can define a Profunctor
by either defining dimap
or by defining both
lmap
and rmap
.
If you supply dimap
, you should ensure that:
dimap
id
id
≡id
If you supply lmap
and rmap
, ensure:
lmap
id
≡id
rmap
id
≡id
If you supply both, you should also ensure:
dimap
f g ≡lmap
f.
rmap
g
These ensure by parametricity:
dimap
(f.
g) (h.
i) ≡dimap
g h.
dimap
f ilmap
(f.
g) ≡lmap
g.
lmap
frmap
(f.
g) ≡rmap
f.
rmap
g
Profunctor (->) | |
Monad m => Profunctor (Kleisli m) | |
Functor w => Profunctor (Cokleisli w) | |
Profunctor (Tagged *) | |
Profunctor (Forget r) | |
Arrow p => Profunctor (WrappedArrow p) | |
Functor f => Profunctor (DownStar f) | |
Functor f => Profunctor (UpStar f) | |
(Profunctor p, Profunctor q) => Profunctor (Procompose p q) | |
(Profunctor p, Profunctor q) => Profunctor (Rift p q) |
Profunctorial Strength
class Profunctor p => Strong p whereSource
class Profunctor p => Choice p whereSource
The generalization of DownStar
of a "costrong" Functor
Minimal complete definition: left'
or right'
Note: We use traverse
and extract
as approximate costrength as needed.
Choice (->) | |
Monad m => Choice (Kleisli m) | |
Comonad w => Choice (Cokleisli w) |
|
Choice (Tagged *) | |
Monoid r => Choice (Forget r) | |
ArrowChoice p => Choice (WrappedArrow p) | |
Traversable w => Choice (DownStar w) |
|
Applicative f => Choice (UpStar f) | |
(Choice p, Choice q) => Choice (Procompose p q) |
Common Profunctors
Lift a Functor
into a Profunctor
(forwards).
Functor f => Profunctor (UpStar f) | |
Applicative f => Choice (UpStar f) | |
Functor m => Strong (UpStar m) | |
Functor f => Representable (UpStar f) | |
Functor f => Functor (UpStar f a) |
Lift a Functor
into a Profunctor
(backwards).
DownStar | |
|
Functor f => Profunctor (DownStar f) | |
Traversable w => Choice (DownStar w) |
|
Functor f => Corepresentable (DownStar f) | |
Functor (DownStar f a) |
newtype WrappedArrow p a b Source
Wrap an arrow for use as a Profunctor
.
WrapArrow | |
|
Arrow p => Arrow (WrappedArrow p) | |
ArrowZero p => ArrowZero (WrappedArrow p) | |
ArrowChoice p => ArrowChoice (WrappedArrow p) | |
ArrowApply p => ArrowApply (WrappedArrow p) | |
ArrowLoop p => ArrowLoop (WrappedArrow p) | |
Category p => Category (WrappedArrow p) | |
Arrow p => Profunctor (WrappedArrow p) | |
ArrowChoice p => Choice (WrappedArrow p) | |
Arrow p => Strong (WrappedArrow p) |