Created
October 27, 2016 17:44
-
-
Save mmollaverdi/dc5bb6e0f179aaf6e1f18cd898885d88 to your computer and use it in GitHub Desktop.
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
trait Applicative[F[_]] { | |
def map2[A, B, C](fa: F[A], fb: F[B])(f: (A, B) => C): F[C] = ??? // ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment