enumerable的any?()是Ruby中的一个内置方法,如果enumerable中的任何对象满足给定条件,则返回一个布尔值,否则返回false。
用法 enu.any? { |obj| block } or enu.any?(pattern)
参数:该函数采用两种类型的参数,一种是对象和块,而另一种是模式。如果未传递任何内容,则假定它是默认对象,并且如果任何对象为false或nil,则返回true。
返回值:它返回一个布尔值。
例子1:
# Ruby program for any? method in Enumerable
# Initialize an enumerable
enu1 = [10, 19, 18]
# checks if any numbers are greater
# than 13 or not
res1 = enu1.any? { |num| num>13}
# prints the result
puts res1
res2 = enu1.any? { |num| num>=20}
# prints the result
puts res2
输出:
true false
例子2:
# Ruby program for any? method in Enumerable
# Initialize an enumerable
enu1 = [10, 19, 20]
# Checks
res1 = enu1.any?(Numeric)
# prints the result
puts res1
# Initialize
enu2 = [nil, 10]
# Checks
res2 = enu2.any?
# prints the result
puts res2
输出:
true true
相关用法
- Ruby Enumerable max()用法及代码示例
- Ruby Enumerable first()用法及代码示例
- Ruby Enumerable one?用法及代码示例
- Ruby Enumerable none?()用法及代码示例
- Ruby Enumerable all?用法及代码示例
- Ruby Enumerable map()用法及代码示例
- Ruby Enumerable min()用法及代码示例
- Ruby Enumerable sum()用法及代码示例
- Ruby Enumerable take()用法及代码示例
- Ruby Enumerable min_by()用法及代码示例
- Ruby Enumerable take_while()用法及代码示例
- Ruby Enumerable minmax_by()用法及代码示例
- Ruby Enumerable max_by()用法及代码示例
- Ruby Enumerable flat_map用法及代码示例
- Ruby Enumerable member?用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Enumerable any? function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。