可枚举的find_all()是Ruby中的一个内置方法,它返回可枚举中满足给定条件的项目。如果没有给出块,它将返回一个枚举数。
用法: enu.find_all { |obj| block }
参数:该函数采用一个块,其条件用于查找元素。
返回值:返回满足该块条件的枚举中的项目。如果没有给出块,则返回一个枚举数。
例子1:
# Ruby program for find_all method in Enumerable
# Initialize
enu = (1..10)
# Prints
enu.find_all { |obj| obj % 2 == 1}
输出:
[1, 3, 5, 7, 9]
例子2:
# Ruby program for find_all method in Enumerable
# Initialize
enu = [1, 7, 10, 11]
# Prints
enu.find_all
输出:
Enumerator: [1, 7, 10, 11]:find_all
相关用法
- Ruby Enumerable max()用法及代码示例
- Ruby Enumerable first()用法及代码示例
- Ruby Enumerable all?用法及代码示例
- Ruby Enumerable take()用法及代码示例
- Ruby Enumerable none?()用法及代码示例
- Ruby Enumerable min()用法及代码示例
- Ruby Enumerable map()用法及代码示例
- Ruby Enumerable sum()用法及代码示例
- Ruby Enumerable one?用法及代码示例
- Ruby Enumerable any?用法及代码示例
- Ruby Enumerable each_slice()用法及代码示例
- Ruby Enumerable to_a()用法及代码示例
- Ruby Enumerable uniq()用法及代码示例
- Ruby Enumerable include?()用法及代码示例
- Ruby Enumerable take_while()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Enumerable find_all() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。