Scala SortedSet foreach() method with example Last Updated : 03 Nov, 2019 Comments Improve Suggest changes Like Article Like Report The foreach() method is utilized to apply the given function to all the elements of the SortedSet. Method Definition: def foreach(f: (A) => Unit): Unit Return Type: It returns all the elements of the SortedSet after applying the given function to each of them. Example #1: Scala // Scala program of foreach() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(3, 7, 12, 9, 21) // Applying foreach method s1.foreach(x => println(x)) } } Output: 3 7 9 12 21 Example #2: Scala // Scala program of foreach() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(1, 2, 3, 4, 5) // Applying foreach method s1.foreach(x => println(x + " times " + x + " = " + x*x)) } } Output: 1 times 1 = 1 2 times 2 = 4 3 times 3 = 9 4 times 4 = 16 5 times 5 = 25 Comment More infoAdvertise with us Next Article Scala SortedSet foreach() method with example G gopaldave Follow Improve Article Tags : Scala Scala-Method scala-collection Similar Reads Scala SortedSet forall() method with example The forall() method is utilized to check if the given predicate satisfies all the elements of the SortedSet or not. Method Definition: def forall(p: (A) => Boolean): Boolean Return Type: It returns true if the stated predicate holds true for all the elements of the SortedSet else it returns false 1 min read Scala TreeSet foreach() method with example In Scala TreeSet class, the foreach() method is utilized to apply a given function to all the elements of the TreeSet. Method Definition: def foreach[U](f: (A) => U): Unit Return Type: It returns all the elements of the TreeSet after applying the given function to each of them. Example #1: Scala 2 min read Scala SortedMap foreach() method with example The foreach() method is utilized to apply the given function to all the elements of the SortedMap. Method Definition: def foreach(f: ((A, B)) => Unit): Unit Return Type: It returns all the elements of the SortedMap after applying the given function to each of them. Example #1: Scala // Scala prog 1 min read Scala Set foreach() method with example The foreach() method is utilized to apply the given function to all the elements of the set. Method Definition: def foreach(f: (A) => Unit): Unit Return Type: It returns all the elements of the set after applying the given function to each of them. Example #1: Scala // Scala program of foreach() 1 min read Scala SortedSet -() method with example The -() method is utilized to creates a new SortedSet with a given element removed from the SortedSet. Method Definition: def -(elem: A): SortedSet[A] Return Type: It returns a new SortedSet with a given element removed from the SortedSet. Example #1: Scala // Scala program of -() // method import s 1 min read Like