Ruby 枚举的 entries() 函数
enumerable 的 entries() 是Ruby中一个内置的方法,用于返回enumerable中的项目。
语法 : enu. entries
参数 :该函数不需要任何参数。
返回值 :它返回枚举中的项目。
例子 1 :
# Ruby program for entries method in Enumerable
# Initialize
enu = [7, 9, 10]
# Prints each with object
enu.entries
输出:
[7, 9, 10]
例2 :
# Ruby program for entries method in Enumerable
# Initialize
enu = (7..14)
# Prints each with object
enu.entries
输出:
[7, 8, 9, 10, 11, 12, 13, 14]