Open In App

Ruby | Enumerable drop() function

Last Updated : 05 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The drop() of enumerable is an inbuilt method in Ruby returns the rest elements in the enumerator after dropping the first N elements.
Syntax: block.drop(N) Parameters: The function takes N which signifies the number of elements to be dropped. Return Value: It returns the rest elements after dropping first N elements.
Example 1: Ruby
# Ruby program for drop method in Enumerable

# Initialize
enu = (1..50)

# returns rest elements
enu.drop(45)
Output:
[46, 47, 48, 49, 50]
Example 2: Ruby
# Ruby program for drop method in Enumerable

# Initialize
enu = [1, 2, 3]

# returns rest elements
enu.drop(1)
Output:
[2, 3]

Next Article

Similar Reads