Skip to content

Instantly share code, notes, and snippets.

@privateblue
Created July 8, 2014 13:13
Show Gist options
  • Save privateblue/537736508ce79d652c88 to your computer and use it in GitHub Desktop.
Save privateblue/537736508ce79d652c88 to your computer and use it in GitHub Desktop.
list.map(f)
list.map { element =>
something()
f(element)
somethingElse()
}
list.map {
case Data(d) => f(d)
case _ => somethingElse()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment