El método -() 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.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(4, 1, 5, 3, 2, 100) // Applying -() method val result = s1-(100) // Display output print(result) } }
Producción:
TreeSet(1, 2, 3, 4, 5)
Ejemplo #2:
// Scala program of -() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(41, 12, 23, 43, 1, 72) // Applying -() method val result = s1-(1) // Display output print(result) } }
Producción:
TreeSet(12, 23, 41, 43, 72)