Skip to content

Instantly share code, notes, and snippets.

@mmollaverdi
Created October 27, 2016 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmollaverdi/dc5bb6e0f179aaf6e1f18cd898885d88 to your computer and use it in GitHub Desktop.
Save mmollaverdi/dc5bb6e0f179aaf6e1f18cd898885d88 to your computer and use it in GitHub Desktop.
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