VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-set-method-with-example/

⇱ Scala Set +() method with example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scala Set +() method with example

Last Updated : 18 Oct, 2019
The +() method is utilized to create a new set with an additional element unless the element is already present.
Method Definition: def +(elem: A): Set[A] Return Type: It returns a new set with an additional element unless the element is already present.
Example #1:
Output:
Set(5, 1, 6, 2, 7, 3, 4)
Example #2:
Output:
Set(1, 41, 12, 72, 43, 23, 100)
Comment

Explore