Created
November 28, 2014 18:09
-
-
Save KamilLelonek/9d1b611c5fa7ef304220 to your computer and use it in GitHub Desktop.
Using JavaConverters in Scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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