pandora-0.4.5: Pandora/Paradigm/Primary/Transformer/Instruction.hs
{-# LANGUAGE UndecidableInstances #-}
module Pandora.Paradigm.Primary.Transformer.Instruction where
import Pandora.Core.Functor (type (:.), type (:=))
import Pandora.Pattern.Category (($))
import Pandora.Pattern.Functor.Covariant (Covariant ((-<$>-)), (-<$$>-))
import Pandora.Pattern.Functor.Pointable (Pointable (point))
import Pandora.Pattern.Functor.Semimonoidal (Semimonoidal (multiply_))
import Pandora.Pattern.Functor.Traversable (Traversable ((<<-)), (-<<-<<-))
import Pandora.Pattern.Functor.Bindable (Bindable ((=<<)))
import Pandora.Pattern.Functor.Monad (Monad)
import Pandora.Pattern.Transformer.Liftable (Liftable (lift))
import Pandora.Pattern.Transformer.Lowerable (Lowerable (lower))
import Pandora.Pattern.Transformer.Hoistable (Hoistable ((/|\), hoist))
import Pandora.Paradigm.Primary.Algebraic.Exponential ()
import Pandora.Paradigm.Primary.Algebraic.Product ((:*:)((:*:)))
data Instruction t a = Enter a | Instruct (t :. Instruction t := a)
instance Covariant t (->) (->) => Covariant (Instruction t) (->) (->) where
f -<$>- Enter x = Enter $ f x
f -<$>- Instruct xs = Instruct $ f -<$$>- xs
instance Covariant t (->) (->) => Pointable (Instruction t) (->) where
point = Enter
instance (Covariant t (->) (->), Semimonoidal t (->) (:*:) (:*:)) => Semimonoidal (Instruction t) (->) (:*:) (:*:) where
multiply_ (Enter x :*: Enter y) = Enter $ x :*: y
multiply_ (Enter x :*: Instruct y) = (x :*:) -<$>- Instruct y
multiply_ (Instruct x :*: Enter y) = (:*: y) -<$>- Instruct x
multiply_ (Instruct x :*: Instruct y) = Instruct $ multiply_ @_ @(->) @(:*:) -<$>- multiply_ (x :*: y)
instance Covariant t (->) (->) => Bindable (Instruction t) (->) where
f =<< Enter x = f x
f =<< Instruct xs = Instruct $ (f =<<) -<$>- xs
instance Monad t => Monad (Instruction t) where
instance Traversable t (->) (->) => Traversable (Instruction t) (->) (->) where
f <<- Enter x = Enter -<$>- f x
f <<- Instruct xs = Instruct -<$>- f -<<-<<- xs
instance Liftable Instruction where
lift x = Instruct $ Enter -<$>- x
instance (forall t . Bindable t (->), forall t . Pointable t (->)) => Lowerable Instruction where
lower (Enter x) = point x
lower (Instruct xs) = lower =<< xs
instance (forall v . Covariant v (->) (->)) => Hoistable Instruction where
_ /|\ Enter x = Enter x
f /|\ Instruct xs = Instruct $ hoist f -<$>- f xs