枚舉的include?()是Ruby中的一個內置方法,它返回一個布爾值。如果可枚舉包含給定的元素,則返回true,否則返回false。
用法:enu.include?(el)
參數:該函數采用要檢查的元素。
返回值:它返回一個布爾值。
例子1:
# Ruby program for include? method in Enumerable
# Initialize
enu = [2, 8, 9, 10, 23]
# Prints
puts enu.include?(8)
puts enu.include?(7)
輸出:
true false
範例#2:
# Ruby program for include? method in Enumerable
# Initialize
enu = (20..30)
# Prints
puts enu.include?(10)
puts enu.include?(29)
輸出:
false true
相關用法
- Ruby Set include?()用法及代碼示例
- Ruby Range include?()用法及代碼示例
- Ruby Hash include?()用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable drop()用法及代碼示例
- Ruby Enumerable min_by()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable include?() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。