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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。