可枚举的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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。