Skip to content

Instantly share code, notes, and snippets.

@4fuss
Last active August 29, 2015 13:56
Show Gist options
  • Save 4fuss/8800993 to your computer and use it in GitHub Desktop.
Save 4fuss/8800993 to your computer and use it in GitHub Desktop.
Scala's underscore wild card used as placeholder for anonymous functions
val songTitles = List("Lay My Soul to Waste", "Shallow Grave", "Killer by Night", "Cold Dark Mourning")
//passing anonymous function (String => String) to map
songTitles.map(t => t.toLowerCase)
//same using placeholder syntax:
songTitles.map(_.toUpperCase)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment