En las colecciones mutables de Scala, el método map() se utiliza para crear un nuevo SortedSet aplicando una función a todos los elementos de este SortedSet.
Definición del método: def map[B](f: (A) => B): mutable.SortedSet[B]
Tipo de retorno: Devuelve un nuevo SortedSet que contiene todos los elementos después de aplicar la función dada.
Ejemplo 1:
// Scala program of map() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(5, 1, 3, 2, 4) // Applying map method val result = s1.map(x => x*x) // Display output println(result) } }
Producción:
TreeSet(1, 4, 9, 16, 25)
Ejemplo #2:
// Scala program of map() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(5, 12, 3, 2, 4) // Applying map method val result = s1.map(x => x/2) // Display output println(result) } }
Producción:
TreeSet(1, 2, 6)