Método inmutable TreeSet map() de Scala

En Scala, el método map() inmutable de la clase TreeSet se utiliza para construir un nuevo TreeSet aplicando una función a todos los elementos del TreeSet dado.

Definición del método: def map[B](f: (A) => B): TreeSet[B]

Tipo de devolución: devuelve un nuevo TreeSet que contiene todos los elementos después de aplicar la función dada.

Ejemplo 1:

// Scala program of map() 
// method 
  
// Import TreeSet
import scala.collection.immutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val q1 = TreeSet(1, 2, 3, 4, 5)  
            
        // Print the TreeSet 
        println(q1) 
          
        // Applying map method  
        val result = q1.map(x => x*x)  
            
        // Displays output  
        print("TreeSet with squared elements: " + result) 
          
    } 
} 
Producción:

TreeSet(1, 2, 3, 4, 5)
TreeSet with squared elements: TreeSet(1, 4, 9, 16, 25)

Ejemplo #2:

// Scala program of map() 
// method 
  
// Import TreeSet
import scala.collection.immutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val q1 = TreeSet(1, 2, 3, 4, 5)  
            
        // Print the TreeSet 
        println(q1) 
          
        // Applying map method  
        val result = q1.map(x => x*x*x)  
            
        // Displays output  
        print("TreeSet with cubed elements: " + result) 
          
    } 
} 
Producción:

TreeSet(1, 2, 3, 4, 5)
TreeSet with cubed elements: TreeSet(1, 8, 27, 64, 125)

Publicación traducida automáticamente

Artículo escrito por Shivam_k y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *