adjunctions-1.8.0: Adjunctions

Data.Functor.Contravariant.Adjunction

Synopsis

Documentation

class (Contravariant f, Corepresentable g) => Adjunction f g | f -> g, g -> f whereSource

An adjunction from Hask^op to Hask

 Op (f a) b ~ Hask a (g b)
 rightAdjunct unit = id
 leftAdjunct counit = id

Any adjunction from Hask to Hask^op would indirectly permit unsafePerformIO, and therefore does not exist.

Methods

unit :: a -> g (f a)Source

counit :: a -> f (g a)Source

leftAdjunct :: (b -> f a) -> a -> g bSource

rightAdjunct :: (a -> g b) -> b -> f aSource

Instances

Adjunction Predicate Predicate

This gives rise to the Cont Bool monad

Adjunction (Op r) (Op r)

This adjunction gives rise to the Cont monad

corepAdjunction :: Adjunction f g => (a -> f ()) -> g aSource

Represent a contravariant functor that has a left adjoint

coindexAdjunction :: Adjunction f g => g a -> a -> f ()Source