pandora-0.2.8: A box of patterns and paradigms

Safe HaskellSafe
LanguageHaskell2010

Pandora.Pattern.Transformer.Liftable

Synopsis

Documentation

class Liftable t where Source #

When providing a new instance, you should ensure it satisfies one law:
* Interchange: lift . point ≡ point

Methods

lift :: Pointable u => u ~> t u Source #

Instances
Liftable Yoneda Source # 
Instance details

Defined in Pandora.Paradigm.Primary.Transformer.Yoneda

Methods

lift :: Pointable u => u ~> Yoneda u Source #

Liftable Outline Source # 
Instance details

Defined in Pandora.Paradigm.Primary.Transformer.Outline

Methods

lift :: Pointable u => u ~> Outline u Source #

Liftable Jack Source # 
Instance details

Defined in Pandora.Paradigm.Primary.Transformer.Jack

Methods

lift :: Pointable u => u ~> Jack u Source #

Liftable Instruction Source # 
Instance details

Defined in Pandora.Paradigm.Primary.Transformer.Instruction

Methods

lift :: Pointable u => u ~> Instruction u Source #

Liftable (Backwards :: (Type -> Type) -> Type -> Type) Source # 
Instance details

Defined in Pandora.Paradigm.Primary.Transformer.Backwards

Methods

lift :: Pointable u => u ~> Backwards u Source #

Liftable (Reverse :: (Type -> Type) -> Type -> Type) Source # 
Instance details

Defined in Pandora.Paradigm.Primary.Transformer.Reverse

Methods

lift :: Pointable u => u ~> Reverse u Source #

(forall (u :: Type -> Type). Bindable u) => Liftable (Continuation r) Source # 
Instance details

Defined in Pandora.Paradigm.Primary.Transformer.Continuation

Methods

lift :: Pointable u => u ~> Continuation r u Source #

Pointable t => Liftable (UT Covariant Covariant t) Source # 
Instance details

Defined in Pandora.Paradigm.Controlflow.Joint.Schemes.UT

Methods

lift :: Pointable u => u ~> UT Covariant Covariant t u Source #

Pointable t => Liftable (TU Covariant Covariant t :: (Type -> Type) -> Type -> Type) Source # 
Instance details

Defined in Pandora.Paradigm.Controlflow.Joint.Schemes.TU

Methods

lift :: Pointable u => u ~> TU Covariant Covariant t u Source #

(Adjoint t' t, Applicative t, Pointable t, forall (u :: Type -> Type). Traversable u) => Liftable (TUT Covariant Covariant Covariant t t') Source # 
Instance details

Defined in Pandora.Paradigm.Controlflow.Joint.Schemes.TUT