Last active
April 29, 2019 23:11
-
-
Save hanshoglund/fb95c7595f185a06afaf19a3f9d82626 to your computer and use it in GitHub Desktop.
fmap
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
> let f = fmap > :t (f f f f) (f f) (f f) (f f f f) | |
> let f = flip > :t (f f f f) (f f) (f f) (f f f f) | |
> let f = (.) > :t (f f f f) (f f) (f f) (f f f f) | |
> :t (f f f f) (f f) (f f) (f f f f) | |
> :t (f f) | |
> :t (f f f) | |
> :t f (f f) (f f) f | |
> :t f (f f) ((f f) f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment