Scala SortedMap drop() method with example
The drop() method is utilized to delete the first 'n' elements. Method Definition: def drop(n: Int): SortedMap[A, B] Return Type: It returns all the elements of the SortedMap except the first 'n' elements. Example #1: // Scala program of drop() // method import scala.collection.immutable.SortedMap /