Method: Enumerable#drop_while
- Defined in:
- lib/hobosupport/enumerable.rb
#drop_while ⇒ Object
66 67 68 69 70 |
# File 'lib/hobosupport/enumerable.rb', line 66 def drop_while drop = 0 drop += 1 while yield(self[drop]) self[drop..-1] end |