Created
January 29, 2021 22:14
-
-
Save treeowl/74b8a7afbf9c0065c9cc39e664f87106 to your computer and use it in GitHub Desktop.
Solution to https://github.com/effectfully-ou/haskell-challenges/blob/master/h3-transform-typed/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# language GADTs, ScopedTypeVariables, DeriveTraversable #-} | |
module ChallengeTransform where | |
import Data.Typeable | |
import Data.Proxy | |
import Data.Coerce | |
data Scheme a where | |
Res :: Typeable a => !(Proxy a) -> Scheme a | |
Arg :: Typeable a => !(Proxy a) -> Scheme b -> Scheme (a -> b) | |
data Function = forall a. Function !(Scheme a) a | |
newtype Wrap a = Wrap { unWrap :: a } | |
deriving (Show, Functor, Foldable, Traversable) | |
wrapProxy :: proxy a -> Proxy (Wrap a) | |
wrapProxy _ = Proxy | |
data Funktion a where | |
Funktion :: Coercible a b => !(Scheme b) -> Funktion a | |
flub :: Scheme a -> Funktion a | |
flub (Res p) = Funktion (Res (wrapProxy p)) | |
flub (Arg p s) | |
| Funktion s' <- flub s | |
= Funktion (Arg (wrapProxy p) s') | |
wrapFunction :: Function -> Function | |
wrapFunction (Function s a) | |
| Funktion s' <- flub s | |
= Function s' (coerce a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment