Open In App

Scala Mutable SortedSet product() method

Last Updated : 26 Mar, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In Scala mutable collections, SortedSet product() method is utilized to find the product of all the elements of the SortedSet.

Method Definition: def product: A

Return Type: It returns the product of all the elements of the SortedSet.

Example #1:




// Scala program of product() 
// method 
import scala.collection.mutable.SortedSet
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a SortedSet 
        val s1 = SortedSet(2, 3
          
        // Applying product method 
        val result = s1.product
          
        // Display output
        println(result)
    


Output:

6

Example #2:




// Scala program of product() 
// method 
import scala.collection.mutable.SortedSet
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a SortedSet 
        val s1 = SortedSet(5, 4, 3, 2, 1
          
        // Applying product method 
        val result = s1.product
          
        // Display output
        println(result)
    


Output:

120


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads