Created
June 23, 2011 05:48
-
-
Save torbjornvatn/1041978 to your computer and use it in GitHub Desktop.
Compact Scala Option
This file contains 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
scala> val myOpt:Option[Int] = Some(1234) | |
myOpt: Option[Int] = Some(1234) | |
scala> myOpt.map { _.toString.reverse.mkString("*")}.getOrElse("unknown") | |
res2: String = 4*3*2*1 | |
scala> val myOpt:Option[Int] = None | |
myOpt: Option[Int] = None | |
scala> myOpt.map { _.toString.reverse.mkString("*")}.getOrElse("unknown") | |
res3: String = unknown |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment