I am playing with app architecture and free monads in haskell. I've got it down, except for how to lift my "instruction" into the correct slot of my coproduct without explicitly giving the full Left/Right path.
Here's the haskell example I've been working from: https://gist.github.com/aaronlevin/87465696ba6c554bc72b#file-reasonable-hs
Here, to inject types into the coproduct, we explicitly mention the path.
For instance:
Program :: Coproduct Interaction (Coproduct Auth Logging) a
logC :: (Functor f) => (forall a. Logging a -> f a) -> String -> Free f ()
logger :: String -> Free Program ()
logger = logC (Program . Coproduct . Right . Coproduct . Right)
Here, logger has to be put in the right slot in the coproduct manually with Coproduct . Right . Coproduct . Right
Runar's talk in scala uses implicit type conversions and an Inject typeclass to achieve this result: https://gist.github.com/runarorama/a8fab38e473fafa0921d#file-gistfile1-scala-L119
In short, I'm wondering if there's a way to do this in haskell.
Program :: Coproduct Interaction (Coproduct Auth Logging) a
? That's not a valid kind signature, nor the type of a data constructor. Is it supposed to be some newtype declaration? – dfeuer