Created
January 5, 2013 15:05
-
-
Save fishmacs/4462013 to your computer and use it in GitHub Desktop.
scala tips 1
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
if oName.isDefined oName.get.toUpperCase else "Name not present" | |
oName.map(_.toUppercase).getOrElse("Name not presented") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment