Actions
Bug #7692
closedEnumerator::Lazy#drop_while and take_while should require a block.
Description
Enumerator::Lazy#drop_while and take_while should require a block.
Currently:
[1].lazy.drop_while.force # => LocalJumpError: no block given
[1].lazy.take_while.force # => LocalJumpError: no block given
After patch, these will raise an ArgumentError "tried to call lazy drop_while without a block"
Updated by marcandre (Marc-Andre Lafortune) almost 12 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r38811.
Marc-Andre, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
- enumerator.c: Require block for Lazy#{take|drop}_while [Bug #7692]
Actions
Like0
Like0