Método Scala mutable SortedSet subsetOf()

En la colección mutable de Scala, el método subsetOf() se utiliza para probar si un SortedSet es un subSortedSet de otro SortedSet.

Definición del método: subsetOf(que: SortedSet[A]): ​​booleano

Tipo de devolución: devuelve verdadero si un SortedSet es un subconjunto de otro SortedSet; de lo contrario, devuelve falso.

Ejemplo 1:

// Scala program of subsetOf() method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(4, 12, 2, 31) 
          
        val s2 = SortedSet(4, 12)
          
        // Applying subSortedSetOf method 
        val result = s2.subsetOf(s1)
          
        // Display output
        println(result)
    } 
} 
Producción:

true

Ejemplo #2:

// Scala program of subsetOf() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(4, 12, 2, 31) 
          
        val s2 = SortedSet(4, 12)
          
        // Applying subSortedSetOf method 
        val result = s1.subsetOf(s2)
          
        // Display output
        println(result)
    } 
} 
Producción:

false

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 *