Created
September 13, 2019 19:51
-
-
Save evaporei/2b32649174ebf6cd3a0624d0563de39f to your computer and use it in GitHub Desktop.
Category Theory - Functors
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
| interface Functor<A> { | |
| fmap<B>(f: (a: A) => B): Functor<B> | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment