scala.collection.convert (original) (raw)
Members list
Defines converter methods from Scala to Java collections.
Defines converter methods from Java to Scala collections.
Convenience for miscellaneous implicit conversions between Java and Scala collections API.
Convenience for miscellaneous implicit conversions between Java and Scala collections API.
It is recommended to use explicit conversions provided by collection.JavaConverters instead. Implicit conversions may cause unexpected issues. Example:
import collection.convert.ImplicitConversions._
case class StringBox(s: String)
val m = Map(StringBox("one") -> "uno")
m.get("one")
The above example returns null
instead of producing a type error at compile-time. The map is implicitly converted to a java.util.Map
which provides a method get(x: AnyRef)
.
Attributes
Deprecated
[Since version 2.13.0]
Use `scala.jdk.CollectionConverters` instead
Source
Supertypes
Self type
Convenience for miscellaneous implicit conversions from Scala to Java collections API.
Convenience for miscellaneous implicit conversions from Scala to Java collections API.
It is recommended to use explicit conversions provided by collection.JavaConverters instead. Implicit conversions may cause unexpected issues, see ImplicitConversions.
Attributes
Deprecated
[Since version 2.13.0]
Use `scala.jdk.CollectionConverters` instead
Source
Supertypes
Self type
Convenience for miscellaneous implicit conversions from Java to Scala collections API.
Convenience for miscellaneous implicit conversions from Java to Scala collections API.
It is recommended to use explicit conversions provided by collection.JavaConverters instead. Implicit conversions may cause unexpected issues, see ImplicitConversions.
Attributes
Deprecated
[Since version 2.13.0]
Use `scala.jdk.CollectionConverters` instead
Source
Supertypes
Self type
Defines implicit conversions from Scala to Java collections.
Defines implicit conversions from Scala to Java collections.
Attributes
Deprecated
[Since version 2.13.0]
Use `scala.jdk.CollectionConverters` instead
Source
Supertypes
Known subtypes
Defines implicit converter methods from Java to Scala collections.
Defines implicit converter methods from Java to Scala collections.
Attributes
Deprecated
[Since version 2.13.0]
Use `scala.jdk.CollectionConverters` instead
Source
Supertypes
Known subtypes
In this article