Created
May 22, 2012 04:26
-
-
Save pedrofurla/2766557 to your computer and use it in GitHub Desktop.
point is to 0 as map is to 1 (in the context of scalaz, by dabblego)
This file contains 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
dabblego | |
point is to 0 as map is to 1 | |
point: A => F[A] | |
map: (A => B) => F[A] => F[B] | |
lift2: (A => B => C) => F[A] => F[B] => F[C] | |
point=lift0 | |
01:23 | |
map=lift1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment