pandora-0.4.5: Pandora/Paradigm/Schemes/TU.hs
module Pandora.Paradigm.Schemes.TU where
import Pandora.Core.Functor (type (:.), type (:=), type (~>))
import Pandora.Pattern.Semigroupoid ((.))
import Pandora.Pattern.Category (($), identity)
import Pandora.Pattern.Functor.Covariant (Covariant, Covariant ((-<$>-)), (-<$$>-))
import Pandora.Pattern.Functor.Contravariant (Contravariant)
import Pandora.Pattern.Functor.Semimonoidal (Semimonoidal (multiply_))
import Pandora.Pattern.Functor.Pointable (Pointable (point))
import Pandora.Pattern.Functor.Extractable (Extractable (extract))
import Pandora.Pattern.Functor.Traversable (Traversable ((<<-)), (-<<-<<-))
import Pandora.Pattern.Functor.Distributive (Distributive ((-<<)))
import Pandora.Pattern.Functor.Bindable (Bindable ((=<<)))
import Pandora.Pattern.Transformer.Liftable (Liftable (lift))
import Pandora.Pattern.Transformer.Lowerable (Lowerable (lower))
import Pandora.Pattern.Transformer.Hoistable (Hoistable ((/|\)))
import Pandora.Paradigm.Controlflow.Effect.Interpreted (Interpreted (Primary, run, unite))
import Pandora.Paradigm.Primary.Algebraic.Product ((:*:)((:*:)))
newtype TU ct cu t u a = TU (t :. u := a)
infixr 3 <:.>, >:.>, <:.<, >:.<
type (<:.>) = TU Covariant Covariant
type (>:.>) = TU Contravariant Covariant
type (<:.<) = TU Covariant Contravariant
type (>:.<) = TU Contravariant Contravariant
instance Interpreted (TU ct cu t u) where
type Primary (TU ct cu t u) a = t :. u := a
run ~(TU x) = x
unite = TU
instance (Covariant t (->) (->), Covariant u (->) (->)) => Covariant (t <:.> u) (->) (->) where
f -<$>- x = TU $ f -<$$>- run x
instance (Covariant t (->) (->), Semimonoidal t (->) (:*:) (:*:), Semimonoidal u (->) (:*:) (:*:)) => Semimonoidal (t <:.> u) (->) (:*:) (:*:) where
multiply_ (TU x :*: TU y) = TU $ multiply_ @_ @(->) @(:*:) -<$>- multiply_ (x :*: y)
instance (Pointable t (->), Pointable u (->)) => Pointable (t <:.> u) (->) where
point = TU . point . point
instance (Extractable t (->), Extractable u (->)) => Extractable (t <:.> u) (->) where
extract = extract . extract . run
instance (Traversable t (->) (->), Traversable u (->) (->)) => Traversable (t <:.> u) (->) (->) where
f <<- x = TU -<$>- f -<<-<<- run x
instance (Bindable t (->), Distributive t (->) (->), Covariant u (->) (->), Bindable u (->)) => Bindable (t <:.> u) (->) where
f =<< TU x = TU $ (\i -> (identity =<<) -<$>- run . f -<< i) =<< x
instance Pointable t (->) => Liftable (TU Covariant Covariant t) where
lift :: Covariant u (->) (->) => u ~> t <:.> u
lift = TU . point
instance Extractable t (->) => Lowerable (TU Covariant Covariant t) where
lower :: t <:.> u ~> u
lower (TU x) = extract x
instance Covariant t (->) (->) => Hoistable (TU Covariant Covariant t) where
(/|\) :: u ~> v -> (t <:.> u ~> t <:.> v)
f /|\ TU x = TU $ f -<$>- x