可枚舉的reject()是Ruby中的一種內置方法,它返回不滿足該塊中給定條件的可枚舉項。如果沒有給出塊,它將返回一個枚舉數。
用法: enu.reject { |obj| block }
參數:該函數采用一個塊,其條件用於查找元素。
返回值:返回枚舉中不滿足塊條件的項目。如果沒有給出塊,它將返回一個枚舉數。
例子1:
# Ruby program for reject method in Enumerable
# Initialize
enu = (1..10)
# Prints
enu.reject { |obj| obj % 2 == 1}
輸出:
[2, 4, 6, 8, 10]
範例#2:
# Ruby program for reject method in Enumerable
# Initialize
enu = [1, 7, 10, 11]
# Prints
enu.reject
輸出:
Enumerator: [1, 7, 10, 11]:reject
相關用法
- Ruby Array reject()用法及代碼示例
- Ruby Array reject!()用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable find_index()用法及代碼示例
- Ruby Enumerable uniq()用法及代碼示例
- Ruby Enumerable include?()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable reject() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。