The toSeq() method is utilized to return a seq consisting of all the elements of the set.
Method Definition: def toSeq: Seq[A]
Return Type: It returns a seq consisting of all the elements of the set.
Example #1:
object GfG
{
def main(args : Array[String])
{
val s 1 = Set( 1 , 2 , 3 , 4 , 5 , 6 )
val result = s 1 .toSeq
for (ele < - result)
println(ele)
}
}
|
Example #2:
object GfG
{
def main(args : Array[String])
{
val s 1 = Set( 41 , 12 , 23 , 43 , 1 , 72 )
val result = s 1 .toSeq
for (ele < - result)
println(ele)
}
}
|