可枚舉的find()是Ruby中的一種內置方法,它返回滿足塊中給定條件的第一個元素。如果沒有塊,則它返回枚舉器本身。
用法: block.find { |obj| block }
參數:該函數采用一個塊,根據該塊將返回第一個滿足條件的塊。
返回值:它將返回滿足該塊或枚舉數的第一個元素。
例子1:
# Ruby program for find method in Enumerable
# Initialize
enu = (1..50)
# returns first element
enu.find { |el| el % 2 == 0 && el % 9 == 0}
輸出:
18
例子2:
# Ruby program for find method in Enumerable
# Initialize
enu = (1..50)
# returns enumerator
enu.find
輸出:
Enumerator: 1..50:find
相關用法
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable detect()用法及代碼示例
- Ruby Enumerable cycle()用法及代碼示例
- Ruby Enumerable count()用法及代碼示例
- Ruby Enumerable take_while()用法及代碼示例
- Ruby Enumerable drop_while()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable find() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。