Skip to content

Instantly share code, notes, and snippets.

@lauris
Created May 14, 2014 20:21
Show Gist options
  • Save lauris/9cda77122f3ae1e83134 to your computer and use it in GitHub Desktop.
Save lauris/9cda77122f3ae1e83134 to your computer and use it in GitHub Desktop.
implicit def flipImplicitlyCurried[A,B,C](f: A => B => C) = (b: B) => (a: A) => f(a)(b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment