枚举的entries()是Ruby中的一个内置方法,返回枚举中的项目。
用法: 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]
相关用法
- Ruby Range entries()用法及代码示例
- Ruby Enumerable min()用法及代码示例
- Ruby Enumerable sum()用法及代码示例
- Ruby Enumerable map()用法及代码示例
- Ruby Enumerable one?用法及代码示例
- Ruby Enumerable none?()用法及代码示例
- Ruby Enumerable any?用法及代码示例
- Ruby Enumerable all?用法及代码示例
- Ruby Enumerable take()用法及代码示例
- Ruby Enumerable max()用法及代码示例
- Ruby Enumerable first()用法及代码示例
- Ruby Enumerable max_by()用法及代码示例
- Ruby Enumerable min_by()用法及代码示例
- Ruby Enumerable detect()用法及代码示例
- Ruby Enumerable each_cons()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Enumerable entries() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。