El método takeRight() se utiliza para seleccionar los últimos ‘n’ elementos del Stream.
Definición del método: def takeRight(n: Int): Stream[A]
Tipo de retorno: Devuelve los últimos ‘n’ elementos del Stream.
Ejemplo 1:
// Scala program of takeRight() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a Stream val m1 = Stream(1, 2, 3, 4, 5, 7) // Applying takeRight method val result = m1.takeRight(2) // Displays output println(result) } }
Producción:
Stream(5, 7)
Ejemplo #2:
// Scala program of takeRight() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a Stream val m1 = Stream(1, 2, 3, 4, 5, 7) // Applying takeRight method val result = m1.takeRight(7) // Displays output println(result) } }
Producción:
Stream(1, 2, 3, 4, 5, 7)
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA