Skip to content

Instantly share code, notes, and snippets.

@h0tk3y
Created March 28, 2017 10:01
Show Gist options
  • Select an option

  • Save h0tk3y/e8d9c8b4132f2644d2b7750d2fba71df to your computer and use it in GitHub Desktop.

Select an option

Save h0tk3y/e8d9c8b4132f2644d2b7750d2fba71df to your computer and use it in GitHub Desktop.
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