Created
October 27, 2016 17:44
-
-
Save mmollaverdi/dc5bb6e0f179aaf6e1f18cd898885d88 to your computer and use it in GitHub Desktop.
Revisions
-
mmollaverdi created this gist
Oct 27, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ trait Applicative[F[_]] { def map2[A, B, C](fa: F[A], fb: F[B])(f: (A, B) => C): F[C] = ??? // ... }