Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/rwanda/array.rb

Instance Method Summary collapse

Instance Method Details

#select_firstObject



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