Skip to content

Instantly share code, notes, and snippets.

@itang
Created April 10, 2017 08:59
Show Gist options
  • Save itang/8ec8534ee3c78c8988fbaaf06a4c6157 to your computer and use it in GitHub Desktop.
Save itang/8ec8534ee3c78c8988fbaaf06a4c6157 to your computer and use it in GitHub Desktop.
val stringStream = Stream.of(*(1..10).toList().map(Int::toString).toTypedArray())
stringStream.parallel().map {
"thread ${Thread.currentThread()}: $it"
}.forEach(::println)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment