Created
March 28, 2017 10:01
-
-
Save h0tk3y/e8d9c8b4132f2644d2b7750d2fba71df 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
| fmap :: (a -> b) -> Cont r a -> Cont r b | |
| fmap f c = cont (\q -> runCont c (\a -> q (f a))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment