可枚舉的first()是Ruby中的一個內置方法,它返回可枚舉的前N個元素或第一個元素。如果沒有第一個元素,則返回nil。如果少於N個元素,則返回所有元素。
用法: enu.first(N)
參數:該函數采用N表示要返回的前N個元素。如果未給出N,則假定N = 1。
返回值:返回前N個或前N個元素。
例子1:
# Ruby program for first method in Enumerable
# Initialize
enu = (1..10)
# Prints
enu.first(6)
輸出:
[1, 2, 3, 4, 5, 6]
例子2:
# Ruby program for first method in Enumerable
# Initialize
enu = [1, 7, 10, 11]
# Prints
enu.first
輸出:
1
例子3:
# Ruby program for first method in Enumerable
# Initialize
enu = [1, 7, 10, 11]
# Prints
enu.first(10)
輸出:
[1, 7, 10, 11]
相關用法
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable find_all()用法及代碼示例
- Ruby Enumerable include?()用法及代碼示例
- Ruby Enumerable uniq()用法及代碼示例
- Ruby Enumerable each_cons()用法及代碼示例
- Ruby Enumerable find()用法及代碼示例
- Ruby Enumerable min_by()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable first() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。