Skip to content

Instantly share code, notes, and snippets.

@bijancn
Created May 30, 2018 08:06
Show Gist options
  • Save bijancn/5182658bf2983c418576368ad37696a8 to your computer and use it in GitHub Desktop.
Save bijancn/5182658bf2983c418576368ad37696a8 to your computer and use it in GitHub Desktop.
trait Functor[F[_]] {
def map[A, B](fa: F[A])(f: A => B): F[B]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment