Created
February 15, 2022 14:50
-
-
Save kakkun61/1900660f4f6c7f2ccc99ccdbc0f2f92a to your computer and use it in GitHub Desktop.
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
type Implicit :: (Type -> (Type -> Type) -> Type) -> (Type -> Type) -> Type | |
newtype Implicit a f = Implicit (a Covered f) | |
type ImplicitT :: ((Type -> (Type -> Type) -> Type) -> Type -> (Type -> Type) -> Type) -> (Type -> Type) -> ((Type -> Type) -> Type) -> Type | |
newtype ImplicitT t f a = ImplicitT (t (Explicit a) Covered f) | |
type Explicit :: ((Type -> Type) -> Type) -> Type -> (Type -> Type) -> Type | |
data family Explicit a b f | |
newtype instance Explicit a Covered f = Explicit (a f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment