The map() method is utilized to build a new set by applying a function to all elements of this set.
Method Definition: def map[B](f: (A) => B): immutable.Set[B]
Return Type: It returns a new set containing all the elements after applying the given function.
Example #1:
object GfG
{
def main(args : Array[String])
{
val s 1 = Set( 5 , 1 , 3 , 2 , 4 )
val result = s 1 .map(x => x*x)
println(result)
}
}
|
Output:
Set(25, 1, 9, 16, 4)
Example #2:
object GfG
{
def main(args : Array[String])
{
val s 1 = Set( 5 , 1 , 3 , 2 , 4 )
val result = s 1 .map(x => x/ 2 )
println(result)
}
}
|