El método toMap() se utiliza para devolver un mapa que consta de todos los elementos del conjunto.
Definición del método: def toMap[T, U]: Map[T, U]
Tipo de retorno: Devuelve un mapa formado por todos los elementos del conjunto.
Ejemplo 1:
// Scala program of toMap() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a set val s1 = Set((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 // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a set val s1 = Set((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)
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA