可枚舉的drop()是Ruby中的一種內置方法,在刪除前N個元素後,它會返回枚舉器中的其餘元素。
用法: block.drop(N)
參數:該函數采用N表示要刪除的元素數。
返回值:刪除前N個元素後,返回其餘元素。
例子1:
# Ruby program for drop method in Enumerable
# Initialize
enu = (1..50)
# returns rest elements
enu.drop(45)
輸出:
[46, 47, 48, 49, 50]
例子2:
# Ruby program for drop method in Enumerable
# Initialize
enu = [1, 2, 3]
# returns rest elements
enu.drop(1)
輸出:
[2, 3]
相關用法
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable flat_map用法及代碼示例
- Ruby Enumerable find()用法及代碼示例
- Ruby Enumerable minmax_by()用法及代碼示例
- Ruby Enumerable member?用法及代碼示例
- Ruby Enumerable drop_while()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable drop() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。