Skip to content

Instantly share code, notes, and snippets.

@LukaJCB
Created August 2, 2016 18:56
Show Gist options
  • Select an option

  • Save LukaJCB/79b15bd06c689ff9750da111ff75a63a to your computer and use it in GitHub Desktop.

Select an option

Save LukaJCB/79b15bd06c689ff9750da111ff75a63a to your computer and use it in GitHub Desktop.
trait Functor[F[_]] {
def fmap[A, B](f: A => B): F[A] => F[B]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment