本文简要介绍ruby语言中 Enumerable.detect
的用法。
用法
detect(*args)
别名:find
返回块返回真值的第一个元素。
给定一个块,调用具有集合的连续元素的块;返回块返回真值的第一个元素:
(0..9).find {|element| element > 2} # => 3
如果没有找到这样的元素,则调用if_none_proc
并返回其返回值。
(0..9).find(proc {false}) {|element| element > 12} # => false
{foo: 0, bar: 1, baz: 2}.find {|key, value| key.start_with?('b') } # => [:bar, 1]
{foo: 0, bar: 1, baz: 2}.find(proc {[]}) {|key, value| key.start_with?('c') } # => []
没有给出块,返回一个枚举器。
相关用法
- Ruby Enumerable.drop用法及代码示例
- Ruby Enumerable.drop_while用法及代码示例
- Ruby Enumerable.any?用法及代码示例
- Ruby Enumerable.slice_before用法及代码示例
- Ruby Enumerable.uniq用法及代码示例
- Ruby Enumerable.find_all用法及代码示例
- Ruby Enumerable.max用法及代码示例
- Ruby Enumerable.map用法及代码示例
- Ruby Enumerable.min_by用法及代码示例
- Ruby Enumerable.find_index用法及代码示例
- Ruby Enumerable.minmax用法及代码示例
- Ruby Enumerable.member?用法及代码示例
- Ruby Enumerable.each_cons用法及代码示例
- Ruby Enumerable.entries用法及代码示例
- Ruby Enumerable.flat_map用法及代码示例
- Ruby Enumerable.reject用法及代码示例
- Ruby Enumerable.each_with_index用法及代码示例
- Ruby Enumerable.filter_map用法及代码示例
- Ruby Enumerable.sort用法及代码示例
- Ruby Enumerable.all?用法及代码示例
- Ruby Enumerable.take用法及代码示例
- Ruby Enumerable.reduce用法及代码示例
- Ruby Enumerable.each_with_object用法及代码示例
- Ruby Enumerable.sort_by用法及代码示例
- Ruby Enumerable.one?用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Enumerable.detect。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。