可枚举的take()是Ruby中的内置方法,它从可枚举中返回前N个元素。如果没有N个元素,则返回整个枚举。
用法: enu.take(n)
参数:该函数接受N,N指定要返回的元素数。
返回值:返回前N个元素。
示例1:
# Ruby program for take method in Enumerable
# Initialize
enu = [10, 13, 12, 11]
# Prints
enu.take(3)
输出:
[10, 13, 12]
示例2:
# Ruby program for take method in Enumerable
# Initialize
enu = (1..19)
# Prints
enu.take(4)
输出:
[1, 2, 3, 4]
相关用法
- Ruby Enumerable all?用法及代码示例
- Ruby Enumerable none?()用法及代码示例
- Ruby Enumerable one?用法及代码示例
- Ruby Enumerable sum()用法及代码示例
- Ruby Enumerable any?用法及代码示例
- Ruby Enumerable min()用法及代码示例
- Ruby Enumerable max()用法及代码示例
- Ruby Enumerable first()用法及代码示例
- Ruby Enumerable map()用法及代码示例
- Ruby Enumerable each_slice()用法及代码示例
- Ruby Enumerable include?()用法及代码示例
- Ruby Enumerable uniq()用法及代码示例
- Ruby Enumerable drop()用法及代码示例
- Ruby Enumerable sort()用法及代码示例
- Ruby Enumerable reverse_each()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Enumerable take() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。