In Scala mutable collections, toList() method is utilized to return a list consisting of all the elements of the SortedSet.
Method Definition: def toList: List[A]
Return Type: It returns a list consisting of all the elements of the SortedSet.
Example #1:
import scala.collection.mutable.SortedSet
object GfG
{
def main(args : Array[String])
{
val s 1 = SortedSet( 10 , 20 , 30 , 40 , 50 )
val result = s 1 .toList
for (elem < - result)
println(elem)
}
}
|
Example #2:
import scala.collection.mutable.SortedSet
object GfG
{
def main(args : Array[String])
{
val s 1 = SortedSet( 41 , 12 , 23 , 43 , 1 , 72 )
val result = s 1 .toList
for (elem < - result)
println(elem)
}
}
|
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
26 Mar, 2020
Like Article
Save Article