Skip to content

Instantly share code, notes, and snippets.

@karthiks
Forked from dblack/gist:3012525
Created June 28, 2012 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karthiks/3012662 to your computer and use it in GitHub Desktop.
Save karthiks/3012662 to your computer and use it in GitHub Desktop.
Behavior of take_while and drop_while without a block
I'm puzzled by the behavior of take_while and drop_while when called without
a block. They return enumerators -- that part I understand -- but I'm not
understanding how those enumerators behave.
Here's what I mean:
>> enum = [1,2,3,4,5].take_while
=> #<Enumerator: [1, 2, 3, 4, 5]:take_while>
>> enum.next
=> 1
>> enum.next
StopIteration: iteration reached an end
from (irb):3:in `next'
from (irb):3
from /Users/dblack/.rvm/rubies/ruby-1.9.3-p125/bin/irb:16:in `<main>'
>> enum.to_a
=> [1]
drop_while does the same thing. This behavior doesn't seem particularly useful.
Any ideas on why it is this way (up to and including that it's a bug)?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment