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"
Actions
Like0
Like0