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.