Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/rwanda/array.rb
Instance Method Summary collapse
Instance Method Details
#select_first ⇒ Object
2 3 4 5 6 7 |
# File 'lib/rwanda/array.rb', line 2 def select_first self.each do |el| return el if yield(el) end nil end |