The take() method is utilized to return a queue consisting of the first ‘n’ elements of the queue.
Method Definition: def take(n: Int): Queue[A]
Return Type: It returns a queue consisting of the first ‘n’ elements of the queue.
Example #1:
import scala.collection.mutable. _
object GfG
{
def main(args : Array[String])
{
val q 1 = Queue( 5 , 2 , 13 , 7 , 1 )
println(q 1 )
val result = q 1 .take( 2 )
print( "Queue containing first two elements: " + result)
}
}
|
Output:
Queue(5, 2, 13, 7, 1)
Queue containing first two elements: Queue(5, 2)
Example #2:
import scala.collection.mutable. _
object GfG
{
def main(args : Array[String])
{
val q 1 = Queue( 5 , 2 , 13 , 7 , 1 )
println(q 1 )
val result = q 1 .take( 3 )
print( "Queue containing first three elements: " + result)
}
}
|
Output:
Queue(5, 2, 13, 7, 1)
Queue containing first three elements: Queue(5, 2, 13)