Open In App

Ruby | Enumerable entries() function

Last Updated : 05 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The entries() of enumerable is an inbuilt method in Ruby returns the items in the enumerable.
Syntax: enu.entries Parameters: The function does not takes any parameter. Return Value: It returns the items in the enum.
Example 1: ruby
# Ruby program for entries method in Enumerable

# Initialize 
enu = [7, 9, 10]

# Prints each with object
enu.entries
Output:
[7, 9, 10]
Example 2: ruby
# Ruby program for entries method in Enumerable

# Initialize 
enu = (7..14)

# Prints each with object
enu.entries
Output:
[7, 8, 9, 10, 11, 12, 13, 14]

Next Article

Similar Reads