可枚举的find()是Ruby中的一种内置方法,它返回满足块中给定条件的第一个元素。如果没有块,则它返回枚举器本身。
用法: block.find { |obj| block }
参数:该函数采用一个块,根据该块将返回第一个满足条件的块。
返回值:它将返回满足该块或枚举数的第一个元素。
例子1:
# Ruby program for find method in Enumerable
# Initialize
enu = (1..50)
# returns first element
enu.find { |el| el % 2 == 0 && el % 9 == 0}
输出:
18
例子2:
# Ruby program for find method in Enumerable
# Initialize
enu = (1..50)
# returns enumerator
enu.find
输出:
Enumerator: 1..50:find
相关用法
- Ruby Enumerable min()用法及代码示例
- Ruby Enumerable map()用法及代码示例
- Ruby Enumerable max()用法及代码示例
- Ruby Enumerable none?()用法及代码示例
- Ruby Enumerable any?用法及代码示例
- Ruby Enumerable one?用法及代码示例
- Ruby Enumerable take()用法及代码示例
- Ruby Enumerable all?用法及代码示例
- Ruby Enumerable sum()用法及代码示例
- Ruby Enumerable first()用法及代码示例
- Ruby Enumerable detect()用法及代码示例
- Ruby Enumerable cycle()用法及代码示例
- Ruby Enumerable count()用法及代码示例
- Ruby Enumerable take_while()用法及代码示例
- Ruby Enumerable drop_while()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Enumerable find() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。