Open In App
Related Articles

Ruby | Enumerable take() function

Improve Article
Improve
Save Article
Save
Like Article
Like

The take() of enumerable is an inbuilt method in Ruby returns the first N elements from the enumerable. If it does not have N elements, then it returns the entire enum.

Syntax: enu.take(n)

Parameters: The function accepts N which specifies the number of elements to be returned.

Return Value: It returns the first N elements.

Example #1:




# Ruby program for take method in Enumerable
  
# Initialize 
enu = [10, 13, 12, 11]
  
# Prints 
enu.take(3)


Output:

[10, 13, 12]

Example #2:




# Ruby program for take method in Enumerable
  
# Initialize 
enu = (1..19)
  
# Prints 
enu.take(4)


Output:

[1, 2, 3, 4]
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 : 05 Dec, 2019
Like Article
Save Article
Previous
Next
Similar Reads