El método take() se utiliza para devolver un SortedSet que consta de los primeros ‘n’ elementos del SortedSet.
Definición del método: def take(n: Int): SortedSet[A]
Donde ‘n’ especifica el número de elementos a seleccionar.Tipo de devolución: devuelve un SortedSet que consta de los primeros ‘n’ elementos del SortedSet.
Ejemplo 1:
// Scala program of take() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(1, 2, 3, 4) // Applying take method val result = s1.take(2) // Display output println(result) } }
Producción:
TreeSet(1, 2)
Ejemplo #2:
// Scala program of take() // 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) // Applying take method val result = s1.take(3) // Display output println(result) } }
Producción:
TreeSet(12, 23, 41)