The take() method is utilized to return a set consisting of first ‘n’ elements of the set.
Method Definition: def take(n: Int): Set[A]
Where ‘n’ is specifies the number of element to select.
Return Type: It returns a set consisting of first ‘n’ elements of the set.
Example #1:
object GfG
{
def main(args : Array[String])
{
val s 1 = Set( 1 , 2 , 3 , 4 )
val result = s 1 .take( 2 )
println(result)
}
}
|
Example #2:
object GfG
{
def main(args : Array[String])
{
val s 1 = Set( 41 , 12 , 23 , 43 )
val result = s 1 .take( 3 )
println(result)
}
}
|
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 :
18 Oct, 2019
Like Article
Save Article