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