Module: Findarraynumeric
- Included in:
- Array
- Defined in:
- lib/myfirstgem_murali.rb
Instance Method Summary collapse
Instance Method Details
#isnumericarray? ⇒ Boolean
2 3 4 5 6 7 8 9 10 11 12 |
# File 'lib/myfirstgem_murali.rb', line 2 def isnumericarray? temp=true self.each do |item| temp=item.is_a?Integer if temp next else break end end return temp end |