Skip to content

Instantly share code, notes, and snippets.

@tstone
Created July 24, 2014 18:44
Show Gist options
  • Save tstone/171b99798b32ae11178d to your computer and use it in GitHub Desktop.
Save tstone/171b99798b32ae11178d to your computer and use it in GitHub Desktop.
implicit class Func1Sugar[A,B](f: Function1[A, Option[B]]) {
def apply(a: Option[A]): Option[B] = a.flatMap(f)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment