Método Scala Mutable SortedSet -()

En las colecciones mutables de Scala, el método SortedSet -() se utiliza para crear un nuevo SortedSet con un elemento dado eliminado del SortedSet.

Definición del método: def -(elemento: A): SortedSet[A]

Tipo de retorno: Devuelve un nuevo SortedSet con un elemento determinado eliminado del SortedSet.

Ejemplo 1:

// Scala program of -() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(11, 55, 33, 20, 100) 
          
        // Applying -() method 
        val result = s1-(100)
              
        // Display output
        print(result) 
          
    } 
} 
Producción:

TreeSet(11, 20, 33, 55)

Ejemplo #2:

// Scala program of -() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(43, 23, 12, 41, 1) 
          
        // Applying -() method 
        val result = s1-(1)
              
        // Display output
        print(result) 
          
    } 
} 
Producción:

TreeSet(12, 23, 41, 43)

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 *