Skip to content

Instantly share code, notes, and snippets.

@jproyo
Created December 6, 2018 15:31
Show Gist options
  • Save jproyo/1d91d9084541f825dfaadbf434dcf08b to your computer and use it in GitHub Desktop.
Save jproyo/1d91d9084541f825dfaadbf434dcf08b to your computer and use it in GitHub Desktop.
Add syntactic sugar to Cats Scala Type Classes combinators - Syntax
import cats.syntax.apply._
IO.shift *> task
// equivalent to
implicitly[ContextShift[IO]].shift *> task
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment