En las colecciones mutables de Scala, el método toMap() se utiliza para devolver un mapa que consta de todos los elementos del SortedSet.
Definición del método: def toMap[T, U]: Map[T, U]
Tipo de retorno: Devuelve un mapa que consta de todos los elementos del SortedSet.
Ejemplo 1:
// Scala program of toMap() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet((1, 2), (3, 4), (5, 6)) // Applying toMap method val result = s1.toMap // Display output println(result) } }
Producción:
Map(1 -> 2, 3 -> 4, 5 -> 6)
Ejemplo #2:
// Scala program of toMap() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet((12, 2), (13, 4), (15, 6)) // Applying toMap method val result = s1.toMap // Display output println(result) } }
Producción:
Map(12 -> 2, 13 -> 4, 15 -> 6)