Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Created November 28, 2014 18:09
Show Gist options
  • Save KamilLelonek/9d1b611c5fa7ef304220 to your computer and use it in GitHub Desktop.
Save KamilLelonek/9d1b611c5fa7ef304220 to your computer and use it in GitHub Desktop.
Using JavaConverters in Scala
scala> import scala.collection.JavaConverters._
import scala.collection.JavaConverters._
scala> scalaList.asJava
res11: java.util.List[Int] = [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment