-
-
Save karthiks/3012662 to your computer and use it in GitHub Desktop.
Behavior of take_while and drop_while without a block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
Just stumbled across this while doing the "write your own version of
Enumerable
" exercise, and I am puzzled by the very same thing.