可枚舉的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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。