En las colecciones mutables de Scala, el método sum() se utiliza para encontrar la suma de todos los elementos del SortedSet.
Definición del método: def sum: A
Tipo de retorno: Devuelve la suma de todos los elementos del SortedSet.
Ejemplo 1:
// Scala program of sum() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(40, 10, 2, 3) // Applying sum method val result = s1.sum // Display output println(result) } }
Producción:
55
Ejemplo #2:
// Scala program of sum() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(2, 6, 5, 8) // Applying sum method val result = s1.sum // Display output println(result) } }
Producción:
21