Open In App

Scala Stack :() method with example

Last Updated : 02 Nov, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
In Scala, scala.collection.mutable implements Stack data structure. The :\ method applies a binary operator to a start value and all elements of this traversable or iterator, going right to left.
Method Definition - def :\[B](z: B)(op: (A, B) ? B): B Returns - the result of inserting op between consecutive elements of this traversable or iterator.
Example #1: SCALA
// Scala program of mutable stack :\() 
// method 

// Import Stack 
import scala.collection.mutable._

// Creating object 
object GfG 
{ 

    // Main method 
    def main(args:Array[String]) 
    { 
        
        
        val st1 = Stack(1, 2, 3) 
        
        
        // Applying :\() method 
        val result1 = (st1 :\ 16 )(_+_)
        val result2 = (st1 :\ 16)(_-_)
            
        // Display output 
        print(result1)
        print("\n")
        print(result2)
        
    } 
} 
Output:
22
-14
Example #2: SCALA
// Scala program of mutable stack :\() method 

// Import Stack 
import scala.collection.mutable._

// Creating object 
object GfG 
{ 

    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a stack 
        val q2 = List(11, 12, 13, 14, 15) 
        
        // Applying :\() method 
        val result = (q2 :\ 6)(_+_)
            
        // Display output 
        print(result) 
        
    } 
} 
Output:
71

Similar Reads