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