Last active
March 22, 2016 15:57
-
-
Save timjb/a75e4c1d2af2aa4fbbfc to your computer and use it in GitHub Desktop.
This file contains hidden or 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 TypeFamilies #-} | |
| type family InvertArrow x :: * where | |
| InvertArrow (a -> b) = b -> a | |
| myId :: InvertArrow (a -> b) -> b -> a | |
| myId x = x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment