Created
July 24, 2014 18:44
-
-
Save tstone/171b99798b32ae11178d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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