dropRight () se utiliza para devolver todos los elementos excepto los últimos elementos ‘n’.
Definición del método: def dropRight(n: Int): Set[A]
Tipo de devolución: devuelve un conjunto que contiene todos los elementos excepto los últimos elementos ‘n’.
Ejemplo 1:
// Scala program of dropRight() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating sets val s1 = Set(1, 2, 3, 4, 5) // Applying dropRight method val s2 = s1.dropRight(1) // Displays output for(elem <- s2) println(elem) } }
Producción:
5 1 2 3
Ejemplo #2:
// Scala program of dropRight() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating sets val s1 = Set(1, 2, 3, 4, 5) // Applying dropRight method val s2 = s1.dropRight(2) // Displays output for(elem <- s2) println(elem) } }
Producción:
5 1 2
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA