Skip to content

Instantly share code, notes, and snippets.

@drapp
Created January 4, 2013 19:52
Show Gist options
  • Save drapp/4455378 to your computer and use it in GitHub Desktop.
Save drapp/4455378 to your computer and use it in GitHub Desktop.
// The mb prefix stands for maybe
def contrivedExample(mbNumber: Option[Int]): Int = {
val step1 = possiblyNumber.map(number => number + 5)
val step2 = step1.filter(number => number > 0)
step2.getOrElse(0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment