Scala Mutable SortedMap min() method with example Last Updated : 04 May, 2020 Comments Improve Suggest changes Like Article Like Report The min() method is utilized to find the smallest element of the SortedMap. Method Definition: def min: (A, B) Return Type: It returns the smallest element of the SortedMap. Example #1: Scala // Scala program of min() // method import scala.collection.SortedMap // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating SortedMap val m1 = SortedMap("geeks" -> 5, "for" -> 3, "cs" -> 2) // Applying min method val result = m1.min // Displays output println(result) } } Output: (cs, 2) As we can see in above example cs is the smallest element in the SortedMap. Example #2: Scala // Scala program of min() // method import scala.collection.SortedMap // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating SortedMap val m1 = SortedMap("geeks" -> 5, "for" -> 3, "for" -> 6) // Applying min method val result = m1.min // Displays output println(result) } } Output: (for, 6) Comment More infoAdvertise with us Next Article Scala Mutable SortedMap min() method with example S Shivam_k Follow Improve Article Tags : Python Scala Scala Mutable-collections Scala Mutable-SortedMap Practice Tags : python Similar Reads Scala Mutable SortedMap mkString() method with example The mkString() method is utilized to represent the elements of the SortedMap as a string. Method Definition: def mkString: String Return Type: It returns the elements of the SortedMap as a string. Example #1: Scala // Scala program of mkString() // method import scala.collection.SortedMap // Creatin 1 min read Scala SortedMap min() method with example The min() method is utilized to find the smallest element of the SortedMap. Method Definition: def min: (A, B) Return Type: It returns the smallest element of the SortedMap. Example #1: Scala // Scala program of min() // method import scala.collection.immutable.SortedMap // Creating object object Gf 1 min read Scala Mutable SortedMap max() method with example The max() method is utilized to find the largest element of the SortedMap. Method Definition: def max: (A, B) Return Type: It returns the largest element of the SortedMap. Example #1: Scala // Scala program of max() // method import scala.collection.SortedMap // Creating object object GfG { // Main 1 min read Scala Mutable SortedMap init() method with example The init() method is utilized to delete the last element of the SortedMap. It will return all the elements of the SortedMap except the last one. Method Definition: def init: SortedMap[A, B] Return Type: It returns all the elements of the SortedMap except the last one. Example #1: Scala // Scala prog 1 min read Scala Mutable SortedMap take() method with example The take() method is utilized to select the first 'n' elements of the SortedMap. Method Definition: def take(n: Int): SortedMap[A, B] Return Type: It returns the first 'n' elements of the SortedMap. Example #1: Scala // Scala program of take() // method import scala.collection.SortedMap // Creating 1 min read Like