Skip to content

Instantly share code, notes, and snippets.

@LukaJCB
Created August 1, 2016 22:18
Show Gist options
  • Select an option

  • Save LukaJCB/de1db796f69c53accffecc1dec8e2a5d to your computer and use it in GitHub Desktop.

Select an option

Save LukaJCB/de1db796f69c53accffecc1dec8e2a5d to your computer and use it in GitHub Desktop.
val list = Stream(1,2,3,4,5,6,7,8,9)
val list2 = list.map(_ + 8)
.filter(_ % 2 == 0)
.map(_ * 4)
println(list2.head)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment